Skip to content

Commit fb0070b

Browse files
mirqtioclaude
andcommitted
fix(test): establish canonical test set matching local baseline run
Add waitlist.spec.ts to testIgnore to match local run 5438b418d431bae7. Local baseline (09:26 UTC): - 590 tests from 22 spec files - 397 passed, 193 pending, 0 failed (100% pass rate) - waitlist.spec.ts did NOT run Recent CI run (21:03 UTC): - 665 tests (+75 difference) - waitlist.spec.ts WAS running (10 tests × 5 browsers = 50 tests) Goal: Establish local/CI parity first, then diagnose which of the 397 tests that passed locally fail in CI. Changes: - Add /.*waitlist\.spec\.ts$/ to testIgnore in both configs - Comment indicates matching local baseline run Expected CI result: 590 tests (down from 665) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 72531af commit fb0070b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

playwright.config.ci.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,13 @@ export default defineConfig({
1919
expect: {
2020
timeout: 15_000, // 15s for production build hydration (increased from 8s)
2121
},
22-
// Skip incomplete/debug tests
22+
// Skip incomplete/debug tests (match local run 5438b418d431bae7)
2323
testIgnore: [
2424
/.*waitlist-functional\.spec\.ts$/,
2525
/.*purchase-payment-element\.spec\.ts$/,
2626
/.*journeys\.spec\.ts$/,
2727
/.*\/_debug\/.*\.spec\.ts$/,
28+
/.*waitlist\.spec\.ts$/, // Did NOT run in local baseline run
2829
],
2930
// CI tests all 5 browsers via matrix strategy
3031
// Regular tests use storageState to bypass consent modal (fixes 80% timeout issue)

playwright.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,13 @@ export default defineConfig({
1010
expect: {
1111
timeout: 5_000,
1212
},
13-
// Skip incomplete/debug tests
13+
// Skip incomplete/debug tests (match local run 5438b418d431bae7)
1414
testIgnore: [
1515
/.*waitlist-functional\.spec\.ts$/,
1616
/.*purchase-payment-element\.spec\.ts$/,
1717
/.*journeys\.spec\.ts$/,
1818
/.*\/_debug\/.*\.spec\.ts$/,
19+
/.*waitlist\.spec\.ts$/, // Did NOT run in local baseline run
1920
],
2021

2122
reporter: [

0 commit comments

Comments
 (0)