You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
345 B
19 lines
345 B
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();
|
|
});
|
|
|
|
});
|
|
|