24 lines
		
	
	
		
			632 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			632 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { defineConfig } from 'cypress'
 | |
| 
 | |
| export default defineConfig({
 | |
|   projectId: 'ry4br7',
 | |
|   videosFolder: 'cypress/videos',
 | |
|   screenshotsFolder: 'cypress/screenshots',
 | |
|   fixturesFolder: 'cypress/fixtures',
 | |
|   video: false,
 | |
|   retries: {
 | |
|     runMode: 3,
 | |
|     openMode: 0,
 | |
|   },
 | |
|   chromeWebSecurity: false,
 | |
|   e2e: {
 | |
|     // We've imported your old cypress plugins here.
 | |
|     // You may want to clean this up later by importing these.
 | |
|     setupNodeEvents(on, config) {
 | |
|       return require('./cypress/plugins/index.js')(on, config)
 | |
|     },
 | |
|     baseUrl: 'http://localhost:4200',
 | |
|     specPattern: 'cypress/e2e/**/*.{js,jsx,ts,tsx}',
 | |
|   },
 | |
| })
 |