Skip to content

Commit 50fce78

Browse files
authored
Merge pull request bitpay#562 from DanielRHayes/feature/setup-testing
Feature/setup testing
2 parents 01e1526 + a729e94 commit 50fce78

35 files changed

+1782
-311
lines changed

DEBUGGING_IN_VSCODE.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Debugging in vscode
2+
3+
Example debug configuration
4+
5+
```
6+
{
7+
// Use IntelliSense to learn about possible attributes.
8+
// Hover to view descriptions of existing attributes.
9+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
10+
"version": "0.2.0",
11+
"configurations": [
12+
{
13+
"type": "node",
14+
"request": "launch",
15+
"name": "UnitTests",
16+
"program": "${workspaceRoot}/build-test/test/runners/unit.js",
17+
"protocol": "auto",
18+
"preLaunchTask": "npm: tsc:test"
19+
},
20+
{
21+
"type": "node",
22+
"request": "launch",
23+
"name": "IntegrationTests",
24+
"program": "${workspaceRoot}/build-test/test/runners/integration.js",
25+
"protocol": "auto",
26+
"preLaunchTask": "npm: tsc:test"
27+
}
28+
]
29+
}
30+
31+
```

0 commit comments

Comments
 (0)