the-scaffold
Version:
Scaffold for the-projects
28 lines (18 loc) • 399 B
JavaScript
/**
* Test case for render.
* Runs with mocha.
*/
const render = require('../lib/render.js')
const assert = require('assert')
const co = require('co')
describe('render', function () {
this.timeout(3000)
before(() => co(function * () {
}))
after(() => co(function * () {
}))
it('Render', () => co(function * () {
}))
})
/* global describe, before, after, it */