Hi I use VS Code and use the VS Code Deno extension with the very good test code lens. I was wondering if it was possible to use the test code lens with debugger activated. So, in my settings.json, I tried to enter :
"deno.codeLens.testArgs": [
"--allow-all",
"--no-check",
"--unstable",
"--inspect-brk"
],
But nothing happens. When I look in the language server output, it says "Executing test run with arguments: deno test --allow-all --no-check"
In fact, whatever I write in my settings does not seem to impact the arguments sent to the deno test CLI.
Am I missing tsomething?