We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
launch.json
Hi, nice project!
In the README it says:
Alternately you can add a launch.json file with these run properties and have vscode auto-attach to the process.
Can you provide this launch.json example? Currently is linking to a TODO.
Thanks!
The text was updated successfully, but these errors were encountered:
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" }, }
Sorry, something went wrong.
No branches or pull requests
Hi, nice project!
In the README it says:
Can you provide this
launch.json
example? Currently is linking to a TODO.Thanks!
The text was updated successfully, but these errors were encountered: