mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-11-03 19:43:52 +00:00 
			
		
		
		
	* feat: support web document and cypress test * fix: support blocks * fix: support table and outline * fix: update nginx
		
			
				
	
	
		
			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,
 | 
						|
  },
 | 
						|
});
 |