Skip to content

Commit

Permalink
Fix flakey test
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoseley committed Jun 23, 2024
1 parent 120215f commit 6c21747
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chat.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ test("e2e catalog, cortex, and sync chat", { timeout: 60000 }, async () => {

const nextPage = await chatList.nextPage();
expect(nextPage.chats.length).toBe(1);
expect(nextPage.chats[0].id).not.toBe(chat.id);
expect(nextPage.chats[0].id).not.toBe(chatList.chats[0].id);

// delete
await catalog.delete();
Expand Down

0 comments on commit 6c21747

Please sign in to comment.