1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-11-10 11:20:19 +00:00
musix-oss/node_modules/walkdir/test/endearly.js
2020-03-03 22:30:50 +02:00

20 lines
345 B
JavaScript

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();
});
});