Skip to content

Commit

Permalink
update package
Browse files Browse the repository at this point in the history
  • Loading branch information
patiernom committed Aug 3, 2015
1 parent 555adff commit 8bbbab0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ gulp.task('mocha', function (cb) {
.on('end', cb);
});

gulp.task('test', ['lint', 'istanbul']);
gulp.task('test', ['lint', 'mocha']);

gulp.task('default',['test']);
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"main": "index.js",
"scripts": {
"test": "gulp test",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha $(find tests -name '*.js') --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"engines": {
"node": ">=0.10.22"
Expand Down

0 comments on commit 8bbbab0

Please sign in to comment.