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.
launch.json
1 parent dbbd9e5 commit 6b59bd5Copy full SHA for 6b59bd5
.vscode/launch.json
@@ -0,0 +1,18 @@
1
+{
2
+ "version": "0.2.0",
3
+ "configurations": [
4
+ {
5
+ "type": "node",
6
+ "request": "launch",
7
+ "name": "Jest Current File",
8
+ "program": "${workspaceFolder}/node_modules/.bin/jest",
9
+ "args": ["${fileBasenameNoExtension}"],
10
+ "console": "integratedTerminal",
11
+ "internalConsoleOptions": "neverOpen",
12
+ "disableOptimisticBPs": true,
13
+ "windows": {
14
+ "program": "${workspaceFolder}/node_modules/jest/bin/jest"
15
+ }
16
17
+ ]
18
+}
0 commit comments