Mercurial > code > home > repos > streamed-graph
changeset 105:4bb8c7775c83
some jest/test/vscode setup thing
author | drewp@bigasterisk.com |
---|---|
date | Sun, 13 Mar 2022 21:57:52 -0700 |
parents | 1aea03d306af |
children | 2468f2227d22 |
files | .vscode/launch.json |
diffstat | 1 files changed, 34 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.vscode/launch.json Sun Mar 13 21:57:52 2022 -0700 @@ -0,0 +1,34 @@ +{ + "configurations": [ + { + "type": "node", + "name": "vscode-jest-tests-1647146073629", + "request": "launch", + "console": "integratedTerminal", + "internalConsoleOptions": "neverOpen", + "disableOptimisticBPs": true, + "program": "${workspaceFolder}/pnpx", + "cwd": "${workspaceFolder}", + "args": [ + "jest", + "--runInBand", + "--watchAll=false" + ] + }, + { + "type": "node", + "name": "vscode-jest-tests", + "request": "launch", + "console": "integratedTerminal", + "internalConsoleOptions": "neverOpen", + "disableOptimisticBPs": true, + "program": "${workspaceFolder}/pnpx", + "cwd": "${workspaceFolder}", + "args": [ + "jest", + "--runInBand", + "--watchAll=false" + ] + } + ] +} \ No newline at end of file