We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b685447 commit a004377Copy full SHA for a004377
tests/integration/messages.test.ts
@@ -46,7 +46,7 @@ describe("Messages", () => {
46
const messageId = response.id;
47
48
// Give Intercom a few seconds to index conversation
49
- await wait(5000);
+ await wait(10_000);
50
51
const searchResults = await client.conversations.search({
52
query: {
@@ -58,7 +58,7 @@ describe("Messages", () => {
58
59
// assert
60
expect(searchResults.data.length).toBeGreaterThan(0);
61
- }, 10_000);
+ }, 20_000);
62
63
it("Create message, no conversation", async () => {
64
// act
0 commit comments