We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a9c22f commit 83dede4Copy full SHA for 83dede4
src/test/runTest.ts
@@ -12,8 +12,10 @@ async function main() {
12
// Passed to --extensionTestsPath
13
const extensionTestsPath = path.resolve(__dirname, './suite/index');
14
15
+ const workspacePath = path.resolve('./src/test/test.code-workspace');
16
+
17
// Download VS Code, unzip it and run the integration test
- await runTests({ extensionDevelopmentPath, extensionTestsPath });
18
+ await runTests({ extensionDevelopmentPath, extensionTestsPath, launchArgs: [workspacePath] });
19
} catch (err) {
20
console.error('Failed to run tests', err);
21
process.exit(1);
0 commit comments