Skip to content

Commit

Permalink
Fix end to end test
Browse files Browse the repository at this point in the history
  • Loading branch information
s-h-a-d-o-w committed Nov 27, 2024
1 parent 0467992 commit 2c94bfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/chat-delay.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ test("chat has acceptable delay until stream starts", async ({ page }) => {

const start = Date.now();
await page.getByRole("main").getByRole("button").click();
await page.getByTestId("message-1-assistant").waitFor();
await page.getByTestId("message-loading").waitFor();
const durationUntilResponse = Date.now() - start;
console.log("durationUntilResponse:", durationUntilResponse);

Expand Down

0 comments on commit 2c94bfa

Please sign in to comment.