UNPKG
virool-pivot
Version:
latest (0.8.42)
0.8.42
0.8.41
A web-based exploratory visualization UI for Druid.io
github.com/implydata/pivot
implydata/pivot
virool-pivot
/
src
/
server
/
routes
/
health
/
health.mocha.ts
13 lines
(9 loc)
•
223 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
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); }); });