|
| 1 | +{ |
| 2 | + // Use IntelliSense to learn about possible attributes. |
| 3 | + // Hover to view descriptions of existing attributes. |
| 4 | + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 |
| 5 | + "version": "0.2.0", |
| 6 | + "configurations": [ |
| 7 | + { |
| 8 | + "type": "node", |
| 9 | + "request": "launch", |
| 10 | + "name": "run", |
| 11 | + "program": "${workspaceFolder}/bin/run", |
| 12 | + "args": [ |
| 13 | + "run", |
| 14 | + "https://gitlab.com/gitlab-org/gitlab" |
| 15 | + ], |
| 16 | + "console": "integratedTerminal", |
| 17 | + "internalConsoleOptions": "neverOpen", |
| 18 | + "disableOptimisticBPs": true, |
| 19 | + }, |
| 20 | + { |
| 21 | + "type": "node", |
| 22 | + "request": "launch", |
| 23 | + "name": "Jest All", |
| 24 | + "program": "${workspaceFolder}/node_modules/.bin/jest", |
| 25 | + "args": [ |
| 26 | + "--runInBand" |
| 27 | + ], |
| 28 | + "console": "integratedTerminal", |
| 29 | + "internalConsoleOptions": "neverOpen", |
| 30 | + "disableOptimisticBPs": true, |
| 31 | + "windows": { |
| 32 | + "program": "${workspaceFolder}/node_modules/jest/bin/jest", |
| 33 | + } |
| 34 | + }, |
| 35 | + { |
| 36 | + "type": "node", |
| 37 | + "request": "launch", |
| 38 | + "name": "Jest Current File", |
| 39 | + "program": "${workspaceFolder}/node_modules/.bin/jest", |
| 40 | + "args": [ |
| 41 | + "${fileBasenameNoExtension}", |
| 42 | + "--config", |
| 43 | + "jest.config.js" |
| 44 | + ], |
| 45 | + "console": "integratedTerminal", |
| 46 | + "internalConsoleOptions": "neverOpen", |
| 47 | + "disableOptimisticBPs": true, |
| 48 | + "windows": { |
| 49 | + "program": "${workspaceFolder}/node_modules/jest/bin/jest", |
| 50 | + } |
| 51 | + } |
| 52 | + ] |
| 53 | +} |
0 commit comments