blob: 549eb4ac5b780defce8e45eb2d7e7a0948ad2a2f [file] [log] [blame]
var test = require('tape')
var walkdir = require('../')
test('async events',function(t){
var paths = [],
files = [],
dirs = [];
var emitter = walkdir(__dirname+'/dir/foo',function(path){
paths.push(path.replace(__dirname+'/',''));
if(path === __dirname+'/dir/foo/a') this.ignore(__dirname+'/dir/foo/a');
})
emitter.on('end',function(){
t.equals(paths.sort().join('|'),'dir/foo/a|dir/foo/x','should have ignored under a');
t.end();
})
})