diff --git a/examples/boilerplate-vue/cypress.config.ts b/examples/boilerplate-vue/cypress.config.ts index 751eb5c690d9..e26cbc11f549 100644 --- a/examples/boilerplate-vue/cypress.config.ts +++ b/examples/boilerplate-vue/cypress.config.ts @@ -1,6 +1,7 @@ import { defineConfig } from 'cypress'; const PORT = process.env.PORT || '8000'; +const isWin = process.platform === 'win32'; export default defineConfig({ projectId: 'qikpat', @@ -10,4 +11,8 @@ export default defineConfig({ }, baseUrl: `http://localhost:${PORT}`, }, + retries: { + runMode: 3, + }, + defaultCommandTimeout: isWin ? 60000 : 4000, });