ilp-plugin-virtual
Version:
ILP virtual ledger plugin for directly transacting connectors
18 lines (14 loc) • 341 B
JavaScript
const appHelper = require('./helpers/app')
describe('Health', function () {
beforeEach(async function () {
this.agent = await appHelper.create()
})
describe('GET /health', function () {
it('respond with ok', async function () {
await this.agent
.get('/health')
.expect(200)
})
})
})