helpers.js 199 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 var Helpers = module.exports = { async: function(fct) { var done = false runs(function() { fct(function() { return done = true }) }) waitsFor(function(){ return done }) } }