Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/tests/runTests.ts')
| -rw-r--r-- | editors/code/tests/runTests.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/tests/runTests.ts b/editors/code/tests/runTests.ts index 7a8f3ef698..6172cc7d5f 100644 --- a/editors/code/tests/runTests.ts +++ b/editors/code/tests/runTests.ts @@ -14,7 +14,7 @@ async function main() { let minimalVersion: string = json.engines.vscode; if (minimalVersion.startsWith('^')) minimalVersion = minimalVersion.slice(1); - const launchArgs = ["--disable-extensions"]; + const launchArgs = ["--disable-extensions", extensionDevelopmentPath]; // All test suites (either unit tests or integration tests) should be in subfolders. const extensionTestsPath = path.resolve(__dirname, './unit/index'); |