diff --git a/web/tests/e2e/home.spec.ts b/web/tests/e2e/home.spec.ts index 05f8526b3..74a9bba96 100644 --- a/web/tests/e2e/home.spec.ts +++ b/web/tests/e2e/home.spec.ts @@ -29,5 +29,9 @@ test( await page.waitForURL("http://localhost:3000/chat"); await page.getByPlaceholder("Send a message "); + + await expect(page.locator("body")).not.toContainText( + "Initializing Danswer" + ); } );