apeman-app-rest
Version:
apeman app to handle restful endpoint.
27 lines (19 loc) • 383 B
JavaScript
/**
* Test case for restSpec.
* Runs with mocha.
*/
const restSpec = require('../lib/specifying/rest_spec.js'),
assert = require('assert')
describe('rest-spec', () => {
before((done) => {
done()
})
after((done) => {
done()
})
it('Rest spec', (done) => {
done()
})
})
/* global describe, before, after, it */