UNPKG

the-scaffold

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