neon-sprawl/bruno/neon-sprawl-server/core/Health.bru

22 lines
319 B
Plaintext

meta {
name: GET health
type: http
seq: 2
}
get {
url: {{baseUrl}}/health
body: none
auth: none
}
tests {
test("status 200", function () {
expect(res.getStatus()).to.equal(200);
});
test("service identity", function () {
expect(res.getBody().service).to.equal("NeonSprawl.Server");
});
}