Patrick Steele-Idem 5df81440e5 Reorganized tests
2016-05-05 07:56:24 -07:00

10 lines
216 B
JavaScript

exports.templateData = {
beginAsync: function(out) {
var asyncOut = out.beginAsync();
setTimeout(function() {
asyncOut.write('B');
asyncOut.end();
}, 20);
}
};