Files
Skrift-Kofnigurator/Docker Backend/bruno-tests/1 Health Check.bru
2026-02-07 13:04:04 +01:00

22 lines
322 B
Plaintext

meta {
name: 1 Health Check
type: http
seq: 1
}
get {
url: {{baseUrl}}/health
body: none
auth: none
}
tests {
test("Status is 200", function() {
expect(res.status).to.equal(200);
});
test("Scriptalizer is configured", function() {
expect(res.body.scriptalizer).to.equal("configured");
});
}