UNPKG

apeman-app-rest

Version:
26 lines (17 loc) 409 B
/** * Test case for oneEndpoint. * Runs with mocha. */ 'use strict' const oneEndpoint = require('../lib/endpoints/one_endpoint.js') const assert = require('assert') const co = require('co') describe('one-endpoint', () => { before(() => co(function * () { })) after(() => co(function * () { })) it('One endpoint', () => co(function * () { })) }) /* global describe, before, after, it */