Skip to content

Commit d7872f2

Browse files
committed
fix: remove debug flags from e2e test command and set action timeout to 0
1 parent ca25d25 commit d7872f2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
"pub": "sh build/release.sh",
115115
"serve:dev": "npm run serve -- --dev",
116116
"serve": "node server",
117-
"test:e2e": "DEBUG=pw:api,pw:browser* npx playwright test",
117+
"test:e2e": "playwright test",
118118
"test:e2e:chromium": "playwright test --project='chromium'",
119119
"test:e2e:ui": "playwright test --ui",
120120
"test:e2e:consume-types": "echo TODO: test the consume-types example with ESM modules",

playwright.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const config = {
4141
// Config - Shared
4242
// See https://playwright.dev/docs/api/class-testoptions
4343
use: {
44-
actionTimeout: 1000,
44+
actionTimeout: 0,
4545
baseURL: TEST_HOST, // Allow relative page.goto() (e.g. `await page.goto('/')`).
4646
trace: 'on-first-retry',
4747
},

0 commit comments

Comments
 (0)