apeman-app-rest
Version:
apeman app to handle restful endpoint.
26 lines (17 loc) • 391 B
JavaScript
/**
* Test case for endpoint.
* Runs with mocha.
*/
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 */