From 53c3bf0ab382650f12690653bdaa63f715eba6d9 Mon Sep 17 00:00:00 2001 From: RMidhunSuresh Date: Tue, 25 Oct 2022 21:20:20 +0530 Subject: [PATCH] Change quotes --- playwright/tests/startup.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playwright/tests/startup.spec.ts b/playwright/tests/startup.spec.ts index 0d38218a..5bb7abf0 100644 --- a/playwright/tests/startup.spec.ts +++ b/playwright/tests/startup.spec.ts @@ -16,6 +16,6 @@ limitations under the License. import { test } from '@playwright/test'; test("App has no startup errors that prevent UI render", async ({ page }) => { - await page.goto('/'); - await page.getByText('Log In', { exact: true }).waitFor(); + await page.goto("/"); + await page.getByText("Log In", { exact: true }).waitFor(); });