From 56e5209e7fbc61641a0521062aca2936831c432f Mon Sep 17 00:00:00 2001 From: Peter Bomber Date: Thu, 2 Nov 2023 14:00:47 +1300 Subject: [PATCH] specify earlier version of VS Code which was working for a previous test run --- src/tests/runTests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/runTests.ts b/src/tests/runTests.ts index 0976f6724..e349e85e4 100644 --- a/src/tests/runTests.ts +++ b/src/tests/runTests.ts @@ -12,7 +12,7 @@ import { runTests } from '@vscode/test-electron'; const extensionTestsPath = path.resolve(__dirname, './suite/index'); // Download VS Code, unzip it and run the integration test - await runTests({ extensionDevelopmentPath, extensionTestsPath }); + await runTests({ extensionDevelopmentPath, extensionTestsPath, version: "1.83.1" }); // TODO: Remove specified version to use latest after automated tests are running. } catch (err) { console.error('Failed to run tests'); process.exit(1);