UNPKG

apeman-app-rest

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