Excludes docs/ from deno fmt and deno lint so the Bruno files don't break formatting and lint checks in CI.
43 lines
501 B
Plaintext
43 lines
501 B
Plaintext
meta {
|
|
name: Health probe
|
|
type: http
|
|
seq: 2
|
|
}
|
|
|
|
get {
|
|
url: {{baseUrl}}/health
|
|
body: none
|
|
auth: inherit
|
|
}
|
|
|
|
example {
|
|
name: 200 Response
|
|
description: Service is up
|
|
|
|
request: {
|
|
url: {{baseUrl}}/health
|
|
method: GET
|
|
mode: none
|
|
}
|
|
|
|
response: {
|
|
headers: {
|
|
Content-Type: application/json
|
|
}
|
|
|
|
status: {
|
|
code: 200
|
|
text: OK
|
|
}
|
|
|
|
body: {
|
|
type: json
|
|
content: '''
|
|
{
|
|
"status": ""
|
|
}
|
|
'''
|
|
}
|
|
}
|
|
}
|