Skip to content

Commit b15dd0f

Browse files
committed
Pin to older VS Code version for tests
1 parent 1806cc3 commit b15dd0f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/runTest.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ async function main() {
1515
// Running tests on the specific workspace
1616
const testWorkspace = path.resolve(__dirname, "../../test/resources/blink")
1717
// Download VS Code, unzip it and run the integration test
18-
await runTests({ extensionDevelopmentPath, extensionTestsPath , launchArgs: [testWorkspace]});
18+
// Tests pass on 1.64 pass but then VS Code itself mysteriously exits
19+
// with code 0xDEAD. Pin to an older version for now.
20+
await runTests({ extensionDevelopmentPath, extensionTestsPath, version: '1.63.2', launchArgs: [testWorkspace]});
1921
} catch (err) {
20-
/* tslint:disable */
21-
console.error("Failed to run tests", err);
22-
/* tslint:enable */
22+
// console.error("Failed to run tests", err);
2323
process.exit(1);
2424
}
2525
}

0 commit comments

Comments
 (0)