UNPKG

the-scaffold

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