Use walkdir instead of findit, which supports Windows.
This commit is contained in:
parent
008b8d404d
commit
7ad8c3b569
2 changed files with 4 additions and 4 deletions
|
@ -6,7 +6,7 @@
|
|||
"coffee-script": "1.6.2",
|
||||
|
||||
"mocha": "*",
|
||||
"findit": "*",
|
||||
"walkdir": "*",
|
||||
"unzip": "*"
|
||||
},
|
||||
|
||||
|
|
|
@ -20,14 +20,14 @@
|
|||
if (query.invert) mocha.invert();
|
||||
|
||||
// Read all test files.
|
||||
var finder = require('findit').find(__dirname);
|
||||
var walker = require('walkdir').walk(__dirname);
|
||||
|
||||
finder.on('file', function(file) {
|
||||
walker.on('file', function(file) {
|
||||
if (/.coffee$/.test(file))
|
||||
mocha.addFile(file);
|
||||
});
|
||||
|
||||
finder.on('end', function() {
|
||||
walker.on('end', function() {
|
||||
mocha.run(function() {
|
||||
Mocha.utils.highlightTags('code');
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue