mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-16 04:11:29 +00:00
34 lines
395 B
Plaintext
34 lines
395 B
Plaintext
meta {
|
|
name: string
|
|
type: http
|
|
seq: 4
|
|
}
|
|
|
|
post {
|
|
url: {{host}}/api/echo/json
|
|
body: json
|
|
auth: none
|
|
}
|
|
|
|
body:json {
|
|
{
|
|
"hello": "bruno"
|
|
}
|
|
}
|
|
|
|
assert {
|
|
res.status: eq 200
|
|
}
|
|
|
|
script:post-response {
|
|
res.setBody("hello from post-res")
|
|
}
|
|
|
|
tests {
|
|
test("res.setBody(string)", function() {
|
|
const body = res.getBody();
|
|
expect(body).to.eql("hello from post-res");
|
|
});
|
|
|
|
}
|