Thanks to visit codestin.com
Credit goes to github.com

Skip to content

chore: turn e2e enterprise tests into e2e premium tests #14979

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fine
  • Loading branch information
aslilac committed Oct 16, 2024
commit 25351c084871bb120283182ba32b7b1ff17baae8
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -536,14 +536,14 @@ jobs:
working-directory: site

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

# Run all of the tests with a premium license
- run: pnpm playwright:test --forbid-only --workers ${{ matrix.variant.premium && '2' || '1' }}
- run: pnpm playwright:test --forbid-only --workers 1
if: ${{ matrix.variant.premium }}
env:
DEBUG: pw:api
Expand Down
2 changes: 1 addition & 1 deletion site/e2e/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default defineConfig({
testMatch: /.*\.spec\.ts/,
dependencies: ["testsSetup"],
use: { storageState },
timeout: 60_000,
timeout: 50_000,
},
],
reporter: [["./reporter.ts"]],
Expand Down
Loading