We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0651187 commit c7c4380Copy full SHA for c7c4380
1 file changed
src/test/runTest.ts
@@ -13,7 +13,11 @@ async function main() {
13
const extensionTestsPath = path.resolve(__dirname, './suite/index')
14
15
// Download VS Code, unzip it and run the integration test
16
- await runTests({ extensionDevelopmentPath, extensionTestsPath })
+ await runTests({
17
+ extensionDevelopmentPath,
18
+ extensionTestsPath,
19
+ launchArgs: ['--disable-extensions'],
20
+ })
21
22
// Run test using a specific workspace
23
const untitledExtensionTestsPath = path.resolve(
@@ -27,7 +31,7 @@ async function main() {
27
31
await runTests({
28
32
extensionDevelopmentPath,
29
33
extensionTestsPath: untitledExtensionTestsPath,
30
- launchArgs: [untitledWorkspace],
34
+ launchArgs: [untitledWorkspace, '--disable-extensions'],
35
})
36
} catch {
37
console.error('Failed to run tests')
0 commit comments