Skip to content

Commit

Permalink
give "Message that creates a converation" test more time
Browse files Browse the repository at this point in the history
  • Loading branch information
Swimburger committed Dec 20, 2024
1 parent b685447 commit a004377
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/messages.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ describe("Messages", () => {
const messageId = response.id;

// Give Intercom a few seconds to index conversation
await wait(5000);
await wait(10_000);

const searchResults = await client.conversations.search({
query: {
Expand All @@ -58,7 +58,7 @@ describe("Messages", () => {

// assert
expect(searchResults.data.length).toBeGreaterThan(0);
}, 10_000);
}, 20_000);

it("Create message, no conversation", async () => {
// act
Expand Down

0 comments on commit a004377

Please sign in to comment.