Cypress / Quiz
The Flake Field Manual
Passes alone, fails in the suite. Green locally, red in CI. Every flake has a signature; learn to read them like tracks in the mud.
- Difficulty
- Hard
- Format
- Quiz
- Points
- 200
- Estimate
- 10 min
// MISSION BRIEF
Your Mission
Flaky tests are not bad luck, they are undiagnosed bugs in the test (or occasionally the app). This drill covers the signatures: order dependence, network races, stale references, and the retry settings that hide versus reveal them.
Seven questions. Speed bonus active: quick, correct answers earn extra points.
// FIRST CONTACT
Battle teaser
A test passes when run alone via .only but fails in the full suite. Primary suspect:
- AThe test file is too long for the runner
- BLeaked state from earlier tests, backend data, uncleaned mocks, or storage that testIsolation does not cover (it resets browser state, not your database)
- C.only changes the assertion engine
- DSuite mode randomizes viewport sizes
Answers, scoring, hints, and the full battle stay sealed.
// SKILL TAGS
cypressflakeciweb