fix unit tests in firefox

This commit is contained in:
Fabian Jakobs 2011-08-16 10:01:09 +02:00
commit 013512fad4

View file

@ -11,7 +11,9 @@ var async = require("asyncjs/async")
async.plugin({
delay: function(delay) {
return this.each(function(item, next) {
setTimeout(next, delay)
setTimeout(function() {
next();
}, delay)
})
},