Skip to content

Commit c88069c

Browse files
committed
test: 🔧 update playwright config
Override default timeout with 60000 in order that testcontainers can be downloaded and started.
1 parent 9a15b30 commit c88069c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

playwright.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ export default defineConfig({
1212
workers: process.env.CI ? 1 : undefined,
1313
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
1414
reporter: "html",
15-
/* Override global timeout. See https://playwright.dev/docs/test-timeouts */
16-
timeout: 10000,
15+
/* Overriding global default timeout of 30000 because of downloading and starting testcontainers. See https://playwright.dev/docs/test-timeouts */
16+
timeout: 60000,
1717

1818
use: {
1919
// Base URL to use in actions like `await page.goto('/')`

0 commit comments

Comments
 (0)