Skip to content

Commit

Permalink
Fix testcase and do not run mocha recursively
Browse files Browse the repository at this point in the history
  • Loading branch information
nknapp committed Mar 15, 2016
1 parent db1b6d4 commit 1fdab40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ before_script:
- standard
script:
- npm install istanbul
- istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --recursive
- istanbul cover ./node_modules/.bin/_mocha --report lcovonly
after_script:
- npm install coveralls
- cat ./coverage/lcov.info | coveralls
3 changes: 1 addition & 2 deletions test/fixtures/module/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
var path = require('path')
var files = require('../../../lib/files.js')

module.exports = function (custmoize) {
module.exports = function (customize) {
return customize.merge({
test: {
files: path.join(__dirname, 'files'),
Expand Down

0 comments on commit 1fdab40

Please sign in to comment.