-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrunTest.js
executable file
·39 lines (32 loc) · 1.09 KB
/
runTest.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
const path = require('path');
const { runTests, downloadAndUnzipVSCode } = require('vscode-test');
async function main() {
try {
// The folder containing the Extension Manifest package.json
// Passed to `--extensionDevelopmentPath`
const extensionDevelopmentPath = path.resolve(__dirname, '../');
const testWorkspace = path.resolve(__dirname, './suite/fixture');
// The path to the extension test script
// Passed to --extensionTestsPath
const extensionTestsPath = path.resolve(__dirname, './suite/index');
// Version
const version = '1.42.0';
// Manually download version
const vscodeExecutablePath = await downloadAndUnzipVSCode(version);
// Download VS Code, unzip it and run the integration test
await runTests({
vscodeExecutablePath,
extensionDevelopmentPath,
extensionTestsPath,
launchArgs: [
testWorkspace,
// This disables all extensions except the one being testing
'--disable-extensions'
]
});
} catch (err) {
console.error('Failed to run tests');
process.exit(1);
}
}
main();