Skip to content

Commit

Permalink
Run integration tests on latest VSCode
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeRobich committed Apr 19, 2022
1 parent 729cc22 commit 186b486
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/runFeatureTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ async function main() {
const extensionTestsPath = path.resolve(__dirname, './featureTests/index');

// Download VS Code, unzip it and run the integration test
await runTests({ version: "1.65.0", extensionDevelopmentPath, extensionTestsPath, launchArgs: ['-n', '--verbose'] });
await runTests({ extensionDevelopmentPath, extensionTestsPath, launchArgs: ['-n', '--verbose'] });
} catch (err) {
console.error(err);
console.error('Failed to run tests');
Expand Down
2 changes: 1 addition & 1 deletion test/runIntegrationTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ async function main() {
}

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

0 comments on commit 186b486

Please sign in to comment.