oneuptime/Accounts/.vscode/launch.json
Nawaz Dhandala a981683d81
fix
2022-04-10 22:50:28 +01:00

17 lines
605 B
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": "Jest Test",
"program": "${workspaceFolder}/node_modules/jest/bin/jest",
"args": ["--runInBand", "${workspaceFolder}/src/test"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
]
}