From e438109c8ed2dfd7e16b5989b4575b8742629b73 Mon Sep 17 00:00:00 2001 From: lovasoa Date: Thu, 14 Nov 2024 09:46:17 +0100 Subject: [PATCH] e2e tests --- tests/end-to-end/official-site.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/end-to-end/official-site.spec.ts b/tests/end-to-end/official-site.spec.ts index ad676c3c..5d261f37 100644 --- a/tests/end-to-end/official-site.spec.ts +++ b/tests/end-to-end/official-site.spec.ts @@ -85,7 +85,7 @@ test("Authentication example", async ({ page }) => { test("table filtering", async ({ page }) => { await page.goto(`${BASE}/documentation.sql?component=table`); const tableSection = page.locator(".card", { - has: page.getByRole("cell", { name: "Chart" }), + has: page.getByRole("cell", { name: "Chart", exact: true }), }); const searchInput = tableSection.getByPlaceholder("Search…");