diff --git a/.vscode/launch.json b/.vscode/launch.json index 66a5e2d..5740781 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,16 +5,12 @@ "name": "Debug Jest Tests", "type": "node", "request": "launch", - "runtimeArgs": [ - "--inspect-brk", - "${workspaceRoot}/node_modules/.bin/jest", - "--runInBand", - "end-to-end", - "-t", - "shared-with-dependencies" - ], + "args": ["--runInBand"], "console": "integratedTerminal", - "internalConsoleOptions": "neverOpen" + "internalConsoleOptions": "neverOpen", + "windows": { + "program": "${workspaceFolder}/node_modules/jest/bin/jest" + } } ] }