Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .github/workflows/tests-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ jobs:
name: 'E2E tests'
if: github.event.pull_request.head.repo.full_name == github.repository
runs-on: ubuntu-latest
timeout-minutes: 40
timeout-minutes: 20
continue-on-error: true
steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 3 additions & 3 deletions packages/e2e/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ const isCI = Boolean(process.env.CI)
export default defineConfig({
globalSetup: './setup/global-auth.ts',
testDir: './tests',
fullyParallel: false,
fullyParallel: true,
forbidOnly: isCI,
retries: 0,
workers: 1,
workers: 5,
maxFailures: isCI ? 3 : 0, // Stop early in CI after 3 failures
reporter: isCI ? [['html', {open: 'never'}], ['list']] : [['list']],
timeout: TEST_TIMEOUT.default, // Heavy tests override via test.setTimeout()
globalTimeout: 35 * 60 * 1000, // Temporary: store creation adds time per test; will reduce with parallel workers
globalTimeout: 20 * 60 * 1000,

use: {
trace: isCI ? 'on' : 'off',
Expand Down
Loading