From 08a52544a6102f33379ca738336b47f96f018863 Mon Sep 17 00:00:00 2001 From: Elliot Braem <16282460+elliotBraem@users.noreply.github.com> Date: Mon, 5 Aug 2024 22:12:19 -0500 Subject: [PATCH] fmt --- playwright-tests/tests/home.spec.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/playwright-tests/tests/home.spec.ts b/playwright-tests/tests/home.spec.ts index d6cc6dd..b7adc21 100644 --- a/playwright-tests/tests/home.spec.ts +++ b/playwright-tests/tests/home.spec.ts @@ -95,7 +95,9 @@ test.describe("Homepage", () => { await expect(searchInput).toBeVisible(); await searchInput.fill("test"); await expect( - page.getByRole("heading", { name: "Sorry, we could not find any results" }), + page.getByRole("heading", { + name: "Sorry, we could not find any results", + }), ).toBeVisible(); }); });