2023-02-10 01:45:27 +02:00
|
|
|
{
|
|
|
|
"name": "Jest file",
|
2023-02-10 02:20:52 +02:00
|
|
|
"type": "node",
|
2023-02-10 01:45:27 +02:00
|
|
|
"request": "launch",
|
|
|
|
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/jest",
|
|
|
|
"args": ["${fileBasenameNoExtension}", "--runInBand", "--watch", "--coverage=false", "--no-cache"],
|
|
|
|
"cwd": "${workspaceRoot}",
|
|
|
|
"console": "integratedTerminal",
|
|
|
|
"internalConsoleOptions": "neverOpen",
|
|
|
|
"sourceMaps": true,
|
|
|
|
"windows": {
|
|
|
|
"program": "${workspaceFolder}/node_modules/jest/bin/jest"
|
|
|
|
}
|
|
|
|
}
|