Skip to content

Commit

Permalink
Extend timeout for windows tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fantavlik committed Sep 7, 2023
1 parent 4eb08a3 commit 8b8acaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functional/spl2.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ suite('SPL2 Language Server functional', async () => {
// verify that it's not installed the next time we call
const newInstalledLatestLsp = await installMissingSpl2Requirements(storagePath, progressBar);
assert.strictEqual(newInstalledLatestLsp, false, 'bad newInstalledLatestLsp');
}).timeout(1*60*1000); // 1 minute
}).timeout(2*60*1000); // 2 minutes

test('should initialize language server', async () => {
const server = await startSpl2ClientAndServer(storagePath, progressBar, 59143, (p) => {});
Expand Down

0 comments on commit 8b8acaa

Please sign in to comment.