Firebase Update

This commit is contained in:
Lukas Nowy
2018-12-22 23:30:39 +01:00
parent befb44764d
commit acffe619b3
11523 changed files with 1614327 additions and 930246 deletions

View File

@ -0,0 +1,36 @@
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();
});
});