Skip to content

Commit

Permalink
Fix coverage (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevgo committed Feb 21, 2020
1 parent b9016e8 commit d1fcf53
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
build:
working_directory: ~/repo
docker:
- image: circleci/node:10
- image: circleci/node:12
steps:
- checkout
- restore_cache:
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ clean: # Removes all build artifacts
@rm -rf dist

coverage: build # measures test coverage
node_modules/.bin/nyc node_modules/.bin/mocha --require source-map-support/register
node_modules/.bin/nyc node_modules/.bin/mocha --require source-map-support/register src/test.ts
node_modules/.bin/nyc report --reporter=text-lcov | node_modules/.bin/coveralls

docs: # runs the documentation tests
Expand Down Expand Up @@ -46,4 +46,4 @@ unit: # runs the unit tests
@node_modules/.bin/mocha src/test.ts

test-win:
@node_modules\\.bin\\mocha
@node_modules\\.bin\\mocha src\\test.ts
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
environment:
nodejs_version: "8"
nodejs_version: "12"

# cache:
# - node_modules
Expand Down

0 comments on commit d1fcf53

Please sign in to comment.