UNPKG

apeman-app-rest

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