coz-handlebars-engine
Version:
coz rendering engine with handlebars.
28 lines (17 loc) • 402 B
JavaScript
/**
* Test case for createHandlebars.
* Runs with mocha.
*/
const createHandlebars = require('../lib/compiling/create_handlebars.js')
const assert = require('assert')
describe('create-handlebars', function () {
this.timeout(3000)
before(async () => {
})
after(async () => {
})
it('Create handlebars', async () => {
})
})
/* global describe, before, after, it */