Open klzns opened 6 months ago
I managed to make it work with:
{
"name": "Run and debug Safetest",
"type": "node",
"request": "launch",
"runtimeArgs": [
"--inspect-brk",
"${workspaceRoot}/node_modules/.bin/jest",
"--runInBand",
"--testMatch='**/*.safetest.{j,t}s{,x}'",
"--setupFilesAfterEnv='<rootDir>/setup-safetest.ts'",
"--watch"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"env": {
"OPT_URL": "http://localhost:3000/",
"OPT_HEADED": "1"
},
}
Hi, nice project!
In the README it says:
Can you provide this
launch.json
example? Currently is linking to a TODO.Thanks!