mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-10-31 01:54:37 +00:00 
			
		
		
		
	
		
			
	
	
		
			19 lines
		
	
	
		
			360 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
		
		
			
		
	
	
			19 lines
		
	
	
		
			360 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
|   | import { defineConfig } from 'cypress'; | ||
|  | 
 | ||
|  | export default defineConfig({ | ||
|  |   component: { | ||
|  |     devServer: { | ||
|  |       framework: 'react', | ||
|  |       bundler: 'vite', | ||
|  |     }, | ||
|  |   }, | ||
|  |   retries: { | ||
|  |     // Configure retry attempts for `cypress run`
 | ||
|  |     // Default is 0
 | ||
|  |     runMode: 2, | ||
|  |     // Configure retry attempts for `cypress open`
 | ||
|  |     // Default is 0
 | ||
|  |     openMode: 0, | ||
|  |   }, | ||
|  | }); |