2022-06-05 11:26:48 -03:00

26 lines
500 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Jest Tests",
"type": "node",
"request": "launch",
"runtimeArgs": [
"--inspect-brk",
// Windows
//"${workspaceRoot}/node_modules/jest/bin/jest.js",
// Linux
"${workspaceRoot}/node_modules/.bin/jest",
"--runInBand",
"--watch",
"--coverage"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
]
}