I know there is this previous posting about this: Why is VSCode not stopping at breakpoints for debugging?
But the answer didn't help me. I don't stop on my breakpoints.
So since the version of March 2021 (version 1.55.2) the breakpoint does not work anymore. It is working fine with the previous version February 2021 (version 1.54.3) and if I reinstall the previous version it will work without any pb.
I did as it was suggested. I created a new launch.json from scratch. But I had to add these lines:
"outputCapture": "std",
"program": "C:/node_modules/protractor/built/cli.js",
"args": ["C:/Tellus/979079/node_modules/src/conf.js"]
You can find below my Launch.json:
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"outputCapture": "std",
"program": "C:/node_modules/protractor/built/cli.js",
"args": ["C:/Tellus/979079/node_modules/src/conf.js"]
}
]
}
Just to provide few context. I am working on protractor tests.
Thanks for your help,