blob: e1346fab358968cd9b472625c8a72cf3dc51f824 [file] [log] [blame]
var test = require('tap').test,
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();
});
});