UNPKG

apemanmodule

Version:
26 lines (17 loc) 397 B
/** * Test case for isModule. * Runs with mocha. */ 'use strict' const isModule = require('../lib/modularizing/is_module.js') const assert = require('assert') const co = require('co') describe('is-module', () => { before(() => co(function * () { })) after(() => co(function * () { })) it('Is module', () => co(function * () { })) }) /* global describe, before, after, it */