ilp-core
Version:
ILP core module managing ledger abstraction
18 lines (14 loc) • 333 B
JavaScript
const appHelper = require('./helpers/app')
describe('Health', function(){
beforeEach(function * () {
this.agent = yield appHelper.create()
})
describe('GET /health', function () {
it('respond with ok', function * () {
yield this.agent
.get('/health')
.expect(200);
})
})
})