apemandb
Version:
Database for apeman project.
28 lines (18 loc) • 450 B
JavaScript
/**
* Test case for integersString.
* Runs with mocha.
*/
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 */