I have the following setup in my launch.json configuration:
{
"type": "node-terminal",
"name": "Test Current File",
"request": "launch",
"command": "npm run test:unit ${fileBasenameNoExtension}",
"cwd": "${workspaceFolder}"
}
I am able to run the current file, but any breakpoints defined are disabled
Setting up the Breakpoint
Selecting the Launch configuration
While Test is Running
End of Test (ran but no breakpoints)