2016-12-02 11:53:03 -07:00

9 lines
329 B
JavaScript

var nodePath = require('path');
exports.check = function(marko, markoCompiler, expect, done) {
var template = marko.load(nodePath.join(__dirname, 'template.marko'));
expect(function() {
template.renderToString({ name: 'John' });
}).to.throw('beginAsync() not allowed when using renderSync()');
done();
};