neon-sprawl/bruno/neon-sprawl-server/recipe-catalog/Health after recipe catalog...

26 lines
536 B
Plaintext

meta {
name: GET health (recipe catalog boot NEO-66)
type: http
seq: 1
}
get {
url: {{baseUrl}}/health
body: none
auth: none
}
docs {
NEO-66 loads content/recipes/*_recipes.json at startup (fail-fast). No recipe HTTP API in this story — use this request to confirm the host started after catalog validation.
}
tests {
test("status 200", function () {
expect(res.getStatus()).to.equal(200);
});
test("service identity", function () {
expect(res.getBody().service).to.equal("NeonSprawl.Server");
});
}