mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-10-31 10:37:12 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			361 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			361 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { defineConfig } from 'cypress'
 | |
| 
 | |
| export default defineConfig({
 | |
|   videosFolder: 'cypress/videos',
 | |
|   video: false,
 | |
|   screenshotsFolder: 'cypress/screenshots',
 | |
|   fixturesFolder: 'cypress/fixtures',
 | |
|   e2e: {
 | |
|     setupNodeEvents(on, config) {
 | |
|       return require('./cypress/plugins/index.ts')(on, config)
 | |
|     },
 | |
|     baseUrl: 'http://localhost:4200',
 | |
|   },
 | |
| })
 |