10000
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 31e084a commit a9730d0Copy full SHA for a9730d0
src/test/runTest.ts
@@ -12,8 +12,14 @@ async function main() {
12
// Passed to --extensionTestsPath
13
const extensionTestsPath: string = path.resolve(__dirname, './suite/index')
14
15
+ const config = {
16
+ extensionDevelopmentPath,
17
+ extensionTestsPath,
18
+ launchArgs: ['--disable-extensions'] // turn off other extensions
19
+ }
20
+
21
// Download VS Code, unzip it and run the integration test
- await runTests({extensionDevelopmentPath, extensionTestsPath})
22
+ await runTests(config)
23
.catch((err: Error) => {
24
console.error('Failed to run tests')
25
console.error(err)
0 commit comments