Firebase Update
This commit is contained in:
19
express-server/node_modules/walkdir/test/endearly.js
generated
vendored
Normal file
19
express-server/node_modules/walkdir/test/endearly.js
generated
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
var test = require('tape'),
|
||||
walk = require('../walkdir.js');
|
||||
|
||||
test('should be able to end walk after first path',function(t){
|
||||
|
||||
var paths = [];
|
||||
|
||||
var em = walk('../',function(path){
|
||||
paths.push(path);
|
||||
this.end();
|
||||
});
|
||||
|
||||
em.on('end',function(){
|
||||
t.equals(paths.length,1,'should have only found one path');
|
||||
t.end();
|
||||
});
|
||||
|
||||
});
|
||||
|
Reference in New Issue
Block a user