mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 11:20:19 +00:00
37 lines
806 B
JavaScript
37 lines
806 B
JavaScript
var test = require('tape'),
|
|
walk = require('../walkdir.js');
|
|
|
|
test('should be able to pause walk',function(t){
|
|
|
|
var paths = [];
|
|
var paused = false;
|
|
var em = walk('./',function(path){
|
|
if(!paused){
|
|
em.pause();
|
|
paused = 1;
|
|
setTimeout(function(){
|
|
t.equals(paths.length,1,'while paused should not emit any more paths');
|
|
em.resume();
|
|
},300);
|
|
} else if(paused == 1){
|
|
em.pause();
|
|
paused = 2;
|
|
setTimeout(function(){
|
|
t.equals(paths.length,2,'while paused should not emit any more paths');
|
|
em.resume();
|
|
},300);
|
|
}
|
|
|
|
paths.push(path);
|
|
|
|
});
|
|
|
|
em.on('end',function(){
|
|
console.log('end, and i found ',paths.length,'paths');
|
|
t.ok(paths.length > 1,'should have more paths before end');
|
|
t.end();
|
|
});
|
|
|
|
});
|
|
|