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(); });