AppFlowy/frontend/appflowy_web_app/cypress.config.ts

19 lines
360 B
TypeScript
Raw Normal View History

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,
},
});