14.58Avoid shared mutable fixtures
Bad:
All tests use:
Automation Test Account
Test 1 changes phone.
Test 2 expects old phone.
Flaky suite.
Prefer:
one logical test
→ owns its data
Same principle as Playwright UI automation.
Bad:
All tests use:
Automation Test Account
Test 1 changes phone.
Test 2 expects old phone.
Flaky suite.
Prefer:
one logical test
→ owns its data
Same principle as Playwright UI automation.