mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-29 03:13:45 +01:00
43 lines
514 B
Plaintext
43 lines
514 B
Plaintext
|
meta {
|
||
|
name: sum
|
||
|
type: http
|
||
|
seq: 1
|
||
|
}
|
||
|
|
||
|
post {
|
||
|
url: {{host}}/api/echo/json
|
||
|
body: json
|
||
|
auth: none
|
||
|
}
|
||
|
|
||
|
body:json {
|
||
|
{
|
||
|
"a": 1,
|
||
|
"b": 2
|
||
|
}
|
||
|
}
|
||
|
|
||
|
assert {
|
||
|
res.status: eq 200
|
||
|
}
|
||
|
|
||
|
script:pre-request {
|
||
|
const math = require("./lib/math");
|
||
|
|
||
|
const body = req.getBody();
|
||
|
body.sum = body.a + body.b;
|
||
|
|
||
|
req.setBody(body);
|
||
|
}
|
||
|
|
||
|
tests {
|
||
|
test("should return json", function() {
|
||
|
const data = res.getBody();
|
||
|
expect(res.getBody()).to.eql({
|
||
|
"a": 1,
|
||
|
"b": 2,
|
||
|
"sum": 3
|
||
|
});
|
||
|
});
|
||
|
}
|