Skip to content

Commit 891e077

Browse files
ci: increase wait time for async query test (#145)
1 parent 08fec2a commit 891e077

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/integration/v2/serverSideAsync.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ describe("server side async integration test", () => {
114114
expect(isRunning).toBe(true);
115115
const isSuccessful = await connection2.isAsyncQuerySuccessful(token);
116116
expect(isSuccessful).not.toBeDefined();
117-
await new Promise(resolve => setTimeout(resolve, 3000)); // wait for the query to finish
117+
await new Promise(resolve => setTimeout(resolve, 6000)); // wait for the query to finish
118118
const isRunningAfter = await connection2.isAsyncQueryRunning(token);
119119
expect(isRunningAfter).toBe(false);
120120
const isSuccessfulAfter = await connection2.isAsyncQuerySuccessful(token);

0 commit comments

Comments
 (0)