Skip to content

Commit 25351c0

Browse files
committed
fine
1 parent 1a35f16 commit 25351c0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -536,14 +536,14 @@ jobs:
536536
working-directory: site
537537

538538
# Run tests that don't require a premium license without a premium license
539-
- run: pnpm playwright:test --forbid-only --workers ${{ matrix.variant.premium && '2' || '1' }}
539+
- run: pnpm playwright:test --forbid-only --workers 1
540540
if: ${{ !matrix.variant.premium }}
541541
env:
542542
DEBUG: pw:api
543543
working-directory: site
544544

545545
# Run all of the tests with a premium license
546-
- run: pnpm playwright:test --forbid-only --workers ${{ matrix.variant.premium && '2' || '1' }}
546+
- run: pnpm playwright:test --forbid-only --workers 1
547547
if: ${{ matrix.variant.premium }}
548548
env:
549549
DEBUG: pw:api

site/e2e/playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export default defineConfig({
6565
testMatch: /.*\.spec\.ts/,
6666
dependencies: ["testsSetup"],
6767
use: { storageState },
68-
timeout: 60_000,
68+
timeout: 50_000,
6969
},
7070
],
7171
reporter: [["./reporter.ts"]],

0 commit comments

Comments
 (0)