UNPKG

apeman-app-rest

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