From 9c521514fcb3003aeb0a8a835f4ce5c23cf7fcd4 Mon Sep 17 00:00:00 2001 From: IK Date: Mon, 21 Sep 2026 07:45:00 +0700 Subject: [PATCH] sync --- apps/web/tests/accessibility.spec.ts | 2 +- apps/web/tests/smoke.spec.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/tests/accessibility.spec.ts b/apps/web/tests/accessibility.spec.ts index d1e8776..1e1f84b 100644 --- a/apps/web/tests/accessibility.spec.ts +++ b/apps/web/tests/accessibility.spec.ts @@ -2,7 +2,7 @@ import AxeBuilder from "@axe-core/playwright"; import { expect, test } from "@playwright/test"; for (const path of [ - "/", "/records", "/report", "/rules", "/privacy", + "/", "/records", "/report", "/tackle", "/rules", "/privacy", "/admin", "/admin/moderation", "/admin/external-sources", "/admin/media", ]) { test(`${path} has no serious accessibility violations`, async ({ page }) => { diff --git a/apps/web/tests/smoke.spec.ts b/apps/web/tests/smoke.spec.ts index 0033114..726a877 100644 --- a/apps/web/tests/smoke.spec.ts +++ b/apps/web/tests/smoke.spec.ts @@ -108,7 +108,7 @@ for (const viewport of [{ name: "desktop", width: 1280, height: 900 }, { name: " test("public pages fit the narrow viewport and expose the skip link", async ({ page }) => { await page.setViewportSize({ width: 320, height: 800 }); - for (const path of ["/", "/records", "/report", "/waterbodies", "/status"]) { + for (const path of ["/", "/records", "/report", "/waterbodies", "/tackle", "/status"]) { await page.goto(path); const dimensions = await page.evaluate(() => ({ clientWidth: document.documentElement.clientWidth,