UNPKG

virool-pivot

Version:

A web-based exploratory visualization UI for Druid.io

13 lines (9 loc) 223 B
import * as supertest from 'supertest'; import * as app from '../../app'; describe('GET /health', () => { it('respond with 200', (done) => { supertest(app) .get('/health') .expect(200, done); }); });