Skip to content

Commit 7f3fcce

Browse files
author
Dave Bartolomeo
committed
Temporarily increase delay for extension activation in test
1 parent 4bc1d1e commit 7f3fcce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extensions/ql-vscode/src/vscode-tests/minimal-workspace/activation.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ describe('launching with a minimal workspace', async () => {
1919
});
2020

2121
it('should activate the extension when a .ql file is opened', async function() {
22-
this.timeout(60000);
22+
this.timeout(600000);
2323
await delay();
2424

2525
const folders = vscode.workspace.workspaceFolders;
@@ -34,7 +34,7 @@ describe('launching with a minimal workspace', async () => {
3434
});
3535

3636
async function delay() {
37-
await new Promise(resolve => setTimeout(resolve, 4000));
37+
await new Promise(resolve => setTimeout(resolve, 40000));
3838
}
3939
});
4040

0 commit comments

Comments
 (0)