xtemplate
Version:
eXtensible Template Engine lib on browser and nodejs. support async control, inheritance, include, logic expression, custom function and more.
22 lines (21 loc) • 644 B
JavaScript
if (typeof XTemplate === 'undefined') {
// ignore precompiled
describe('precompile xtpl', function () {
beforeEach(function () {
modulex.config('packages', {
'precompile': {
base: '/tests/browser/fixture'
}
});
});
it('works for precompile xtpl', function (done) {
modulex.use('precompile/a-render', function (aRender) {
expect(aRender({
x: 1,
y: 2
})).to.equal('12');
done();
});
});
});
}