Skip to content

Commit

Permalink
fix: increase playwright timeout (#2978)
Browse files Browse the repository at this point in the history
This can be an issue if the test has to pull docker images
  • Loading branch information
stuartwdouglas authored Oct 3, 2024
1 parent ede3a5a commit f6dd92e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions frontend/console/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ export default defineConfig({
retries: process.env.CI ? 2 : 0,
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 1 : undefined,
/* If the test end up needing to pull the postgres docker image this can take a while, give it two minutes */
timeout: 120000,
reporter: 'html',
use: {
baseURL: 'http://localhost:8892',
Expand Down

0 comments on commit f6dd92e

Please sign in to comment.