UNPKG

coz-handlebars-engine

Version:
28 lines (17 loc) 402 B
/** * Test case for createHandlebars. * Runs with mocha. */ 'use strict' 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 */