UNPKG

apemandb

Version:
28 lines (18 loc) 450 B
/** * Test case for integersString. * Runs with mocha. */ 'use strict' const integersString = require('../lib/helpers/integers_string.js') const assert = require('assert') const co = require('co') describe('integers-string', function () { this.timeout(3000) before(() => co(function * () { })) after(() => co(function * () { })) it('Integers string', () => co(function * () { })) }) /* global describe, before, after, it */