-
Notifications
You must be signed in to change notification settings - Fork 30.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
disable extensions not working for extension debugging #76989
Comments
I am seeing the same behavior. It launches Code with an editor called System InformationVersion: 1.37.0-insider (user setup) ScreenshotNote how it's throwing a warning as it overwrites the installed extension with the version being tested. Launch Configuration{
"name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--disable-extensions",
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out/test"
],
"outFiles": [
"${workspaceFolder}/out/test/**/*.js"
],
"preLaunchTask": "npm: watch"
} |
I just tried running the tests using the |
Until this is fixed, using
|
Please try and verify the fix in the next Insiders build. |
works great, thanks! |
Can also verify, thank you! |
Steps to Reproduce:
--disable-extensions
tolaunch.json
as described in https://code.visualstudio.com/api/working-with-extensions/testing-extension#disabling-other-extensions-while-debugging:Does this issue occur when all extensions are disabled?: Yes
Additional information:
code-insiders --disable-extensions
from the command line works as expected--disable-extensions
inlaunch.json
has worked in version 1.35, it stopped working in 1.36The text was updated successfully, but these errors were encountered: