Smoke: expect SAMA in homepage title, not tdd.md
The SAMA pivot retitled / to "SAMA — the architectural standard for AI-agent codebases", but the editor-flow smoke still asserted /tdd\.md/i. Update the regex so the suite catches real regressions again. Co-Authored-By: Claude Opus 4.7 (1M context) <[email protected]>
1 file changed · +1 −1
e2e/editor-flow.spec.ts
+1
−1
| @@ -126,7 +126,7 @@ test.describe("docs site smoke", () => { | ||
| 126 | 126 | test("homepage loads", async ({ page }) => { |
| 127 | 127 | const res = await page.goto("/"); |
| 128 | 128 | expect(res?.status()).toBe(200); |
| 129 | - await expect(page).toHaveTitle(/tdd\.md/i); | |
| 129 | + await expect(page).toHaveTitle(/sama/i); | |
| 130 | 130 | }); |
| 131 | 131 | |
| 132 | 132 | test("sama landing loads with docs chrome", async ({ page }) => { |