Thanks for the hint!
For reference here is a full .vscode/launch.json file that can simply copy / pasted to make it work:
// .vscode/launch.json{"version":"0.2.0","configurations":[// Default launch configuration for VSCode Jest extension{"name":"vscode-jest-tests","type":"node","request":"launch","console":"integratedTerminal","internalConsoleOptions":"neverOpen","program":"${workspaceRoot}/node_modules/jest/bin/jest.js","cwd":"${workspaceFolder}","args":["--runInBand","--watchAll=false"]}]}
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
Thanks for the hint!
For reference here is a full
.vscode/launch.jsonfile that can simply copy / pasted to make it work: