Skip to content
Merged
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
4 changes: 4 additions & 0 deletions playwright.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ module.exports = defineConfig({
testDir: './tests/e2e',
timeout: 30_000,
workers: 1,
// Retry in CI so a single transient Playground hiccup (e.g. a slow
// wp-admin boot on a loaded runner) self-heals instead of failing the
// whole smoke job. Runs against an ephemeral WordPress, so retries are safe.
retries: process.env.CI ? 2 : 0,
expect: {
timeout: 30_000,
},
Expand Down
Loading