22 lines
322 B
Plaintext
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");
|
|
});
|
|
}
|