|
15 | 15 | "${input:package_manager}", |
16 | 16 | "${input:repository}" |
17 | 17 | ] |
18 | | - } |
| 18 | + }, |
| 19 | + { |
| 20 | + "type": "node", |
| 21 | + "name": "vscode-jest-tests", |
| 22 | + "request": "launch", |
| 23 | + "program": "${workspaceFolder}/npm_and_yarn/helpers/node_modules/jest/bin/jest.js", |
| 24 | + "args": [ |
| 25 | + "--runInBand", |
| 26 | + "-c", |
| 27 | + "${workspaceFolder}/npm_and_yarn/helpers/jest.config.js" |
| 28 | + ], |
| 29 | + "cwd": "${workspaceFolder}", |
| 30 | + "console": "integratedTerminal", |
| 31 | + "internalConsoleOptions": "neverOpen", |
| 32 | + "disableOptimisticBPs": true |
| 33 | + }, |
| 34 | + { |
| 35 | + "type": "node", |
| 36 | + "name": "Run jest tests (watch)", |
| 37 | + "request": "launch", |
| 38 | + "program": "${workspaceFolder}/npm_and_yarn/helpers/node_modules/jest/bin/jest.js", |
| 39 | + "args": [ |
| 40 | + "--runInBand", |
| 41 | + "--watchAll", |
| 42 | + "-c", |
| 43 | + "${workspaceFolder}/npm_and_yarn/helpers/jest.config.js" |
| 44 | + ], |
| 45 | + "cwd": "${workspaceFolder}", |
| 46 | + "console": "integratedTerminal", |
| 47 | + "internalConsoleOptions": "neverOpen", |
| 48 | + "disableOptimisticBPs": true |
| 49 | + }, |
| 50 | + { |
| 51 | + "type": "node", |
| 52 | + "name": "Run jest tests on opened file (watch)", |
| 53 | + "request": "launch", |
| 54 | + "program": "${workspaceFolder}/npm_and_yarn/helpers/node_modules/jest/bin/jest.js", |
| 55 | + "args": [ |
| 56 | + "${fileBasenameNoExtension}", |
| 57 | + "--runInBand", |
| 58 | + "--watchAll", |
| 59 | + "-c", |
| 60 | + "${workspaceFolder}/npm_and_yarn/helpers/jest.config.js" |
| 61 | + ], |
| 62 | + "cwd": "${workspaceFolder}", |
| 63 | + "console": "integratedTerminal", |
| 64 | + "internalConsoleOptions": "neverOpen", |
| 65 | + "disableOptimisticBPs": true |
| 66 | + }, |
19 | 67 | ], |
20 | 68 | "inputs": [ |
21 | 69 | { |
|
0 commit comments