From 13b51ec76dbeb9e8c852eb50f6fa51b598d87b1d Mon Sep 17 00:00:00 2001 From: cupcakearmy Date: Mon, 12 Sep 2022 19:34:37 +0200 Subject: [PATCH] add timeout --- playwright.config.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/playwright.config.ts b/playwright.config.ts index f5a06f6..b776a6a 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -9,12 +9,14 @@ const config: PlaywrightTestConfig = { outputDir: './test-results', testDir: './test', + timeout: 60_000, webServer: { command: 'pnpm run test:server', port: 1234, reuseExistingServer: true, }, + projects: [ { name: 'chrome', use: { ...devices['Desktop Chrome'] } }, { name: 'firefox', use: { ...devices['Desktop Firefox'] } },