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
/
build
/
server
/
routes
/
health
/
health.mocha.js
11 lines
(10 loc)
•
262 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
"use strict"
;
var
supertest =
require
(
'supertest'
);
var
app =
require
(
'../../app'
);
describe
(
'GET /health'
,
function
(
) {
it
(
'respond with 200'
,
function
(
done
) {
supertest
(app) .
get
(
'/health'
) .
expect
(
200
, done); }); });