Skip to content

Commit 073e264

Browse files
committed
Initial setup of unit tests
1 parent a1c5c5e commit 073e264

File tree

19 files changed

+3461
-145
lines changed

19 files changed

+3461
-145
lines changed

vscode/.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@ nbcode
22
node_modules
33
out
44
nbproject
5-
.vscode-test/
5+
.vscode-test/
6+
.nyc_output
7+
coverage/

vscode/.nycrc.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"extends": "@istanbuljs/nyc-config-typescript",
3+
"reporter":[
4+
"text",
5+
"html",
6+
"text-summary",
7+
"cobertura"
8+
],
9+
"all": true,
10+
"cache": false,
11+
"include": [
12+
"src/**/*.ts", "out/**/*.js"
13+
],
14+
"exclude": [ "src/test/**/*.ts", "out/test/**/*.js"]
15+
}

0 commit comments

Comments
 (0)