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 07fb7c8 commit 00d8e04Copy full SHA for 00d8e04
test/integration/v2/serverSideAsync.test.ts
@@ -59,7 +59,7 @@ describe("server side async integration test", () => {
59
expect(isRunning).toBe(true);
60
const isSuccessful = await connection.isAsyncQuerySuccessful(token);
61
expect(isSuccessful).not.toBeDefined();
62
- await new Promise(resolve => setTimeout(resolve, 3000)); // wait for the query to finish
+ await new Promise(resolve => setTimeout(resolve, 6000)); // wait for the query to finish
63
const isRunningAfter = await connection.isAsyncQueryRunning(token);
64
expect(isRunningAfter).toBe(false);
65
const isSuccessfulAfter = await connection.isAsyncQuerySuccessful(token);
0 commit comments