UNPKG

coz-handlebars-engine

Version:
28 lines (17 loc) 339 B
/** * Test case for create. * Runs with mocha. */ 'use strict' const create = require('../lib/create.js') const assert = require('assert') describe('create', function () { this.timeout(3000) before(async () => { }) after(async () => { }) it('Create', async () => { }) }) /* global describe, before, after, it */