diff --git a/e2e/live/saved-view-filter.spec.ts b/e2e/live/saved-view-filter.spec.ts index d8a8bf2ca..6b69679d3 100644 --- a/e2e/live/saved-view-filter.spec.ts +++ b/e2e/live/saved-view-filter.spec.ts @@ -25,10 +25,10 @@ import { test, expect } from '@playwright/test'; * Prereqs: the usual live-e2e pair (see playwright.live.config.ts). Run: * pnpm test:e2e:live e2e/live/saved-view-filter.spec.ts * - * NOT yet in the `test:e2e:live:ci` allowlist, on purpose: live-e2e.yml's own - * policy is that specs join it only after they have proven flake-free on the - * lane, and this one has no record yet. Promote it in a follow-up once the - * nightly has run it. + * In the `test:e2e:live:ci` allowlist since objectui#3472, per live-e2e.yml's + * promotion policy (prove flake-free first, then admit): 3/3 consecutive green + * runs against the pinned live pair, plus a 5/5 run of the enlarged allowlist + * to show it does not disturb the incumbent specs. */ const APP = process.env.SHOWCASE_APP_NAME || 'showcase_app'; diff --git a/package.json b/package.json index 69784b520..c49cca75b 100644 --- a/package.json +++ b/package.json @@ -59,7 +59,7 @@ "test:e2e": "playwright test", "test:e2e:ui": "playwright test --ui", "test:e2e:live": "playwright test --config=playwright.live.config.ts", - "test:e2e:live:ci": "playwright test --config=playwright.live.config.ts screen-flow.spec.ts action-modal.spec.ts master-detail.spec.ts", + "test:e2e:live:ci": "playwright test --config=playwright.live.config.ts screen-flow.spec.ts action-modal.spec.ts master-detail.spec.ts saved-view-filter.spec.ts", "test:e2e:import-harness": "playwright test --config=playwright.import-harness.config.ts", "test:e2e:import-console": "playwright test --config=playwright.import-console.config.ts" },