Skip to content

Commit 1d02a57

Browse files
committed
Tests: nyc coverage
Replaces istanbul code coverage with nyc.
1 parent 86a0c40 commit 1d02a57

File tree

5 files changed

+1647
-614
lines changed

5 files changed

+1647
-614
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/.nyc_output/
12
/coverage/
23
/lib/
34
/node_modules/

.npmignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
/.nyc_output/
12
/coverage/
23
/spec/
34
/src/
45
/.editorconfig
56
/.gitignore
7+
/.nycrc
68
/.travis.yml
79
/mocha.opts
810
/package-lock.json

.nycrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"extension": [
3+
".ts"
4+
],
5+
"exclude": [
6+
"**/*.d.ts",
7+
"spec/**/*.ts"
8+
]
9+
}

0 commit comments

Comments
 (0)