Skip to content
This repository was archived by the owner on Jan 20, 2020. It is now read-only.

Commit 183c12a

Browse files
author
Luciano Nooijen
committed
Added VS Code config
1 parent 0b6a006 commit 183c12a

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.vscode/launch.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "node",
9+
"name": "Launch Jest Tests",
10+
"request": "launch",
11+
"args": [
12+
"--runInBand"
13+
],
14+
"cwd": "${workspaceFolder}",
15+
"console": "integratedTerminal",
16+
"internalConsoleOptions": "neverOpen",
17+
"program": "${workspaceFolder}/node_modules/jest/bin/jest"
18+
},
19+
{
20+
"type": "node",
21+
"request": "launch",
22+
"name": "Launch Program",
23+
"program": "${workspaceFolder}/server.js"
24+
},
25+
]
26+
}

0 commit comments

Comments
 (0)