From af142ffbcc232498134e0c2adb460dad2e81061e Mon Sep 17 00:00:00 2001 From: Elliot Braem <16282460+elliotBraem@users.noreply.github.com> Date: Mon, 5 Aug 2024 22:11:35 -0500 Subject: [PATCH] fix text in test --- playwright-tests/tests/home.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright-tests/tests/home.spec.ts b/playwright-tests/tests/home.spec.ts index 55c9e40..d6cc6dd 100644 --- a/playwright-tests/tests/home.spec.ts +++ b/playwright-tests/tests/home.spec.ts @@ -95,7 +95,7 @@ test.describe("Homepage", () => { await expect(searchInput).toBeVisible(); await searchInput.fill("test"); await expect( - page.getByRole("heading", { name: "Sorry, we could not find the" }), + page.getByRole("heading", { name: "Sorry, we could not find any results" }), ).toBeVisible(); }); });