Skip to content

Commit 6891f76

Browse files
committed
setup test framework
1 parent 868a557 commit 6891f76

9 files changed

+691
-2
lines changed

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
coverage/

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
coverage/
12
node_modules/
23
*.log

.istanbul.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
check:
2+
global:
3+
branches: 100
4+
functions: 100
5+
lines: 100
6+
statements: 100

.npmignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1+
coverage/
2+
test/
13
.*
4+
*.log
25
AUTHORS.md
36
CHANGES.md
47
CONTRIBUTING.md

.travis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ before_script:
66
- npm install -g npm@latest
77
script:
88
- npm run ci
9+
after_script:
10+
- npm run report-coverage
911
notifications:
1012
slack:
1113
rooms:

codecov.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
comment: off

0 commit comments

Comments
 (0)