Skip to content

Commit ed35224

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

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
gulp test
4545
npm run test:artifacts
4646
env:
47-
CODE_VERSION: 1.65.0
47+
CODE_VERSION: 1.66.0
4848
DISPLAY: :99.0
4949

5050
- name: Build platform-specific extension package

test/runFeatureTests.ts

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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)