| 1 |
// Specs declare state via their nearest blueprint.json (defineWpConfigConsts + |
| 2 |
// setSiteOptions + updateUserMeta steps). Keep this file as a thin re-export so |
| 3 |
// spec imports stay stable as helpers come and go. |
| 4 |
// |
| 5 |
// API mocking convention: per-spec `page.route()` inside the spec's own |
| 6 |
// `beforeEach` (or per-test, where one branch needs a different stub). No |
| 7 |
// shared mock fixture, no cassette layer — most ported specs assert on UI |
| 8 |
// shape, not response data, so they hit real APIs by design and match the |
| 9 |
// Cypress posture for the same scope. The only spec that depends on a stubbed |
| 10 |
// response today is `Draft/completions/completions.spec.ts`; copy that shape |
| 11 |
// when a new spec needs to assert against a specific payload. |
| 12 |
export { expect, test } from '@wordpress/e2e-test-utils-playwright'; |
| 13 |
|