Skip to content

Commit 186b486

Browse files
committed
Run integration tests on latest VSCode
1 parent 729cc22 commit 186b486

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/runFeatureTests.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ async function main() {
1818
const extensionTestsPath = path.resolve(__dirname, './featureTests/index');
1919

2020
// Download VS Code, unzip it and run the integration test
21-
await runTests({ version: "1.65.0", extensionDevelopmentPath, extensionTestsPath, launchArgs: ['-n', '--verbose'] });
21+
await runTests({ extensionDevelopmentPath, extensionTestsPath, launchArgs: ['-n', '--verbose'] });
2222
} catch (err) {
2323
console.error(err);
2424
console.error('Failed to run tests');

test/runIntegrationTests.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ async function main() {
4444
}
4545

4646
// Download VS Code, unzip it and run the integration test
47-
await runTests({ version: "1.65.0", extensionDevelopmentPath, extensionTestsPath, launchArgs: [workspacePath, '-n', '--verbose'], extensionTestsEnv: process.env });
47+
await runTests({ extensionDevelopmentPath, extensionTestsPath, launchArgs: [workspacePath, '-n', '--verbose'], extensionTestsEnv: process.env });
4848
} catch (err) {
4949
console.error(err);
5050
console.error('Failed to run tests');

0 commit comments

Comments
 (0)