Skip to content

Commit

Permalink
Implement Istanbul test coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
antoninbouchal committed Nov 3, 2018
1 parent 9c8c828 commit e5c4171
Show file tree
Hide file tree
Showing 7 changed files with 671 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
coverage
dist
7 changes: 6 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,9 @@ node_js:
- "8"
- "9"

script: npm run test
script:
- "npm run test"

after_script:
- "npm run coverage"
- "npm install coveralls && cat ./coverage/lcov.info | coveralls"
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ Simple sending JSON requests via async/await or promises.

# Async JSON Request

[![Coverage Status](https://coveralls.io/repos/github/bouchal/node-async-json-request/badge.svg?branch=master)](https://coveralls.io/github/bouchal/node-async-json-request?branch=master)

## Installation

```
Expand Down
Loading

0 comments on commit e5c4171

Please sign in to comment.