Skip to content

Commit a996f8b

Browse files
author
Josh Goldberg
authored
Added .vscode/launch.json (#534)
1 parent 76af73b commit a996f8b

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.vscode/launch.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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": ["--runTestsByPath", "${relativeFile}"],
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

Comments
 (0)