zpt
Version:
Zenon Page Templates - JS (ZPT-JS)
19 lines (15 loc) • 509 B
JavaScript
import { zzDOM } from '../../../node_modules/zzdom/index.js';
const zz = zzDOM.zz;
import { zpt } from '../../../index.js';
import { dictionary } from './dictionary.js';
// Parse template
zpt.run({
root: [ zz( '#t1-1' )[0], zz( '#t1-3' )[0] ],
dictionary: dictionary
});
// Unit tests
QUnit.test( "Multiroot test", function( assert ) {
assert.equal( zz('#t1-1').html() , "hello" );
assert.equal( zz('#t1-2').html() , "not rendered!" );
assert.equal( zz('#t1-3').html() , "hello" );
});