We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5addaa2 commit 0ba4abbCopy full SHA for 0ba4abb
.vscode/launch.json
@@ -1,6 +1,18 @@
1
{
2
"version": "0.2.0",
3
"configurations": [
4
+ {
5
+ "type": "node",
6
+ "request": "launch",
7
+ "name": "Debug Tests",
8
+ "program": "${workspaceRoot}/node_modules/.bin/jest",
9
+ "cwd": "${workspaceRoot}",
10
+ // to restrict running to a particular test case, add something like "--testNamePattern=webook payloads"
11
+ "args": ["--runInBand", "--config", "jest.config.js"],
12
+ "windows": {
13
+ "program": "${workspaceFolder}/node_modules/jest/bin/jest"
14
+ }
15
+ },
16
17
"name": "Attach to Node Functions",
18
"type": "node",
0 commit comments