Skip to content

Commit

Permalink
fix: debug mode
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Mucha <[email protected]>
  • Loading branch information
drptbl committed Sep 14, 2022
1 parent f0fc8d6 commit 9ff8711
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions synpress.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ module.exports = defineConfig({
env: {
coverage: false,
},
defaultCommandTimeout: process.env.SYNDEBUG ? 0 : 30000,
pageLoadTimeout: process.env.SYNDEBUG ? 0 : 30000,
requestTimeout: process.env.SYNDEBUG ? 0 : 30000,
defaultCommandTimeout: process.env.SYNDEBUG ? 9999999 : 30000,
pageLoadTimeout: process.env.SYNDEBUG ? 0 : 9999999,
requestTimeout: process.env.SYNDEBUG ? 0 : 9999999,
e2e: {
setupNodeEvents,
baseUrl: 'http://localhost:3000',
Expand Down

0 comments on commit 9ff8711

Please sign in to comment.