coz-handlebars-engine
Version:
coz rendering engine with handlebars.
28 lines (17 loc) • 339 B
JavaScript
/**
* Test case for create.
* Runs with mocha.
*/
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 */