We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 877d738 commit eb15c69Copy full SHA for eb15c69
examples/boilerplate-vue/cypress.config.ts
@@ -1,6 +1,7 @@
1
import { defineConfig } from 'cypress';
2
3
const PORT = process.env.PORT || '8000';
4
+const isWin = process.platform === 'win32';
5
6
export default defineConfig({
7
projectId: 'qikpat',
@@ -10,4 +11,8 @@ export default defineConfig({
10
11
},
12
baseUrl: `http://localhost:${PORT}`,
13
14
+ retries: {
15
+ runMode: 3,
16
+ },
17
+ defaultCommandTimeout: isWin ? 60000 : 4000,
18
});
0 commit comments