Skip to content

Commit 01bdf4a

Browse files
Fixed the startup file for vscode.
1 parent 5917b37 commit 01bdf4a

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

.vscode/launch.json

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,10 @@
22
"version": "0.2.0",
33
"configurations": [
44
{
5-
"type": "node",
6-
"request": "launch",
7-
"name": "Launch node via yarn & 'start' command",
8-
"cwd": "${workspaceFolder}",
9-
"runtimeExecutable": "node",
10-
"runtimeArgs": [
11-
"test"
12-
]
5+
"name": "Launch tests via NPM",
6+
"type": "node-terminal",
7+
"command": "npm test",
8+
"request": "launch"
139
}
1410
]
1511
}

0 commit comments

Comments
 (0)