blob: ddf68702d64457ad17488c86d6625550cb48d4ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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+'/',''));
}).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();
})
})
|