From eb62d6368bbef88243a7e0f0b464633d35a4b98c Mon Sep 17 00:00:00 2001 From: diegosouzapw Date: Mon, 13 Apr 2026 21:37:35 -0300 Subject: [PATCH] test(e2e): fix Playwright strict mode ambiguity with all tab locator --- tests/e2e/combo-unification.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/combo-unification.spec.ts b/tests/e2e/combo-unification.spec.ts index 179a827b90..00a8967489 100644 --- a/tests/e2e/combo-unification.spec.ts +++ b/tests/e2e/combo-unification.spec.ts @@ -140,7 +140,7 @@ test.describe("Combo Unification", () => { test.skip(page.url().includes("/login"), "Authentication enabled without a login fixture."); - await expect(page.getByRole("button", { name: /all/i })).toBeVisible(); + await expect(page.getByRole("button", { name: /^layers all$/i })).toBeVisible(); await expect(page.getByRole("button", { name: /intelligent/i })).toBeVisible(); await expect(page.getByRole("button", { name: /deterministic/i })).toBeVisible(); await expect(page.getByText("Intelligent Routing Dashboard")).toBeVisible();