Merge pull request #279 from Pomax/winfix

grunt fix for running on windows
This commit is contained in:
David Humphrey 2014-09-09 13:02:07 -04:00
commit fb20e6789a
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ module.exports = function(grunt) {
mocha: {
// Run all tests (e.g., tests require()'ed in tests/index.js) and also tests/bugs/issue225.js
// separately, since it can't be included in a browserify build.
command: './node_modules/.bin/mocha --reporter list tests/index.js && ./node_modules/.bin/mocha --reporter list tests/bugs/issue225.js'
command: '"./node_modules/.bin/mocha" --reporter list tests/index.js && "./node_modules/.bin/mocha" --reporter list tests/bugs/issue225.js'
}
},