grunt fix for running on windows

This commit is contained in:
Pomax 2014-09-09 09:43:20 -07:00
parent a9551d8a56
commit 3344338c2e
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ module.exports = function(grunt) {
mocha: { mocha: {
// Run all tests (e.g., tests require()'ed in tests/index.js) and also tests/bugs/issue225.js // 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. // 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'
} }
}, },