Skip to content

Commit 66e2d5d

Browse files
committed
ci: increase test timeout
1 parent 1a86273 commit 66e2d5d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spec/integration/client.spec.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ describe('Client', function () {
138138
await updateSampleAccount(account);
139139

140140
// Wait for event to be received
141-
await waitFor(5000, () => receivedEvent !== undefined);
141+
await waitFor(10000, () => receivedEvent !== undefined);
142142

143143
// Check received event and subcription info
144144
expect(receivedEvent?.replayId).toBeDefined();
@@ -207,7 +207,7 @@ describe('Client', function () {
207207
const publishedReplayId = publishResult.replayId;
208208

209209
// Wait for event to be received
210-
await waitFor(5000, () => receivedEvent !== undefined);
210+
await waitFor(10000, () => receivedEvent !== undefined);
211211

212212
// Check received event and subcription info
213213
expect(receivedEvent?.replayId).toBe(publishedReplayId);
@@ -261,7 +261,7 @@ describe('Client', function () {
261261
const publishedReplayId = publishResult.replayId;
262262

263263
// Wait for event to be received
264-
await waitFor(5000, () => receivedEvent !== undefined);
264+
await waitFor(10000, () => receivedEvent !== undefined);
265265

266266
// Check received event and subcription info
267267
expect(receivedEvent?.replayId).toBe(publishedReplayId);
@@ -321,7 +321,7 @@ describe('Client', function () {
321321
const publishedReplayId = publishResult.replayId;
322322

323323
// Wait for event to be received
324-
await waitFor(5000, () => receivedEvent !== undefined);
324+
await waitFor(10000, () => receivedEvent !== undefined);
325325

326326
// Check received event and subcription info
327327
expect(receivedEvent?.replayId).toBe(publishedReplayId);

0 commit comments

Comments
 (0)