mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +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,
|
||
|
},
|
||
|
});
|