| 123456789101112131415161718192021 |
- {
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Debug CRA Tests",
- "type": "node",
- "request": "launch",
- "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/react-scripts",
- "args": [
- "test",
- "--runInBand",
- "--no-cache",
- "--env=jsdom",
- "--watchAll=false"
- ],
- "cwd": "${workspaceRoot}",
- "console": "integratedTerminal",
- "internalConsoleOptions": "neverOpen"
- }
- ]
- }
|