Skip to content

Commit d45e8a0

Browse files
committed
test: add debug configuration for VSCode
1 parent 37969d8 commit d45e8a0

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ jasmine-config/**/*.js.map
1010
# IDEs
1111
.idea/
1212
jsconfig.json
13-
.vscode/
1413
.history
1514

1615
# Misc

.vscode/launch.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"type": "node",
6+
"request": "launch",
7+
"name": "Test",
8+
"program": "${workspaceFolder}/node_modules/jasmine/bin/jasmine.js",
9+
"args": [
10+
"--config=jasmine-config/jasmine.json"
11+
],
12+
"outFiles": [
13+
"${workspaceFolder}/**/*.js"
14+
]
15+
}
16+
]
17+
}

0 commit comments

Comments
 (0)