Skip to content

Commit

Permalink
[#1940] Increasing Cypress Timeout Configuration (#2020)
Browse files Browse the repository at this point in the history
Currently the timeout to load pages is 18000. Hence, cypress 
is unable to start on some local machines as network request 
are limited to the underlying operating system, 
and can still timeout if the value is increased.

Let's increase the cypress timeout configuration.
  • Loading branch information
germainelee02 committed Aug 2, 2023
1 parent 1d20634 commit 3cf77b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/cypress/cypress.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = defineConfig({
fixturesFolder: false,
video: false,
defaultCommandTimeout: 30000,
pageLoadTimeout: 180000,
pageLoadTimeout: 400000,
e2e: {
setupNodeEvents(on, config) {},
baseUrl: 'http://localhost:9000',
Expand Down

0 comments on commit 3cf77b4

Please sign in to comment.