From ebc06b9264dce647ebfe0c4abcf65bf9a6c780d2 Mon Sep 17 00:00:00 2001 From: Tarcio Date: Thu, 25 Jun 2026 19:15:18 -0300 Subject: [PATCH] test(e2e): fix the @starter-projectss tag typo and document the tag set Correct the single @starter-projectss -> @starter-projects typo in the extended starter-projects spec, and list the canonical tag set in tests/README so new specs reuse an existing tag instead of inventing variants. Phase 3 (T3). Refs LE-1665 --- src/frontend/tests/README.md | 11 +++++++++++ .../tests/extended/features/starter-projects.spec.ts | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/src/frontend/tests/README.md b/src/frontend/tests/README.md index d9add7a145..2af60a0032 100644 --- a/src/frontend/tests/README.md +++ b/src/frontend/tests/README.md @@ -24,3 +24,14 @@ already covers. Prefer seeding state through `seedFlowViaApi` over rebuilding flows on the canvas — UI rebuilds are the suite's main CI cost. + +## Tags + +Specs are tagged (`{ tag: [...] }`) so CI can filter which suites run. Use a tag +that already exists — don't invent variants or introduce typos (e.g. +`@starter-projects`, never `@starter-projectss`). The tags currently in use: + +`@release` · `@workspace` · `@api` · `@components` · `@starter-projects` · +`@database` · `@deployment` · `@a11y` · `@mainpage` · `@features` · `@agents` · +`@folder` · `@regression` · `@notes` · `@workflow` · `@routes` · `@right-click` · +`@dropdown` diff --git a/src/frontend/tests/extended/features/starter-projects.spec.ts b/src/frontend/tests/extended/features/starter-projects.spec.ts index 8740bdab08..3a1434d04e 100644 --- a/src/frontend/tests/extended/features/starter-projects.spec.ts +++ b/src/frontend/tests/extended/features/starter-projects.spec.ts @@ -4,7 +4,7 @@ import { awaitBootstrapTest } from "../../utils/await-bootstrap-test"; test( "user must be able to interact with starter projects", - { tag: ["@release", "@starter-projectss"] }, + { tag: ["@release", "@starter-projects"] }, async ({ page, context }) => { await awaitBootstrapTest(page);