mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-11-03 19:17:13 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			345 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			345 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { defineConfig } from 'cypress'
 | 
						|
 | 
						|
export default defineConfig({
 | 
						|
  videosFolder: 'cypress/videos',
 | 
						|
  screenshotsFolder: 'cypress/screenshots',
 | 
						|
  fixturesFolder: 'cypress/fixtures',
 | 
						|
  e2e: {
 | 
						|
    setupNodeEvents(on, config) {
 | 
						|
      return require('./cypress/plugins/index.ts')(on, config)
 | 
						|
    },
 | 
						|
    baseUrl: 'http://localhost:4200',
 | 
						|
  },
 | 
						|
})
 |