UNPKG

fur-shapes

Version:
28 lines (18 loc) 374 B
/** * Test case for i. * Runs with mocha. */ 'use strict' const i = require('../lib/i.js') const assert = require('assert') const co = require('co') describe('i', function () { this.timeout(3000) before(() => co(function * () { })) after(() => co(function * () { })) it('I', () => co(function * () { })) }) /* global describe, before, after, it */