Skip to content

Commit 0af356f

Browse files
committed
coverage
1 parent e1377d4 commit 0af356f

File tree

10 files changed

+1576
-1016
lines changed

10 files changed

+1576
-1016
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules
2+
src/test
23
dist

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ dist
44
coverage
55
typings
66
npm-debug.log
7+
.nyc_output

.mocharc.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"ui": "bdd",
3+
"exit": true,
4+
"check-leaks": true,
5+
"require": ["ts-node/register"]
6+
}

.nycrc.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": "@istanbuljs/nyc-config-typescript",
3+
"all": false,
4+
"include": ["src/**"],
5+
"exclude": ["src/test/**"]
6+
}

0 commit comments

Comments
 (0)