bruno/packages/bruno-tests/collection/scripting/api/req/setHeaders.bru
Anoop M D 753a576c3c
Feat/safe mode quickjs (#2848)
Safe Mode Sandbox using QuickJS
Co-authored-by: Anoop M D <anoop.md1421@gmail.com>
Co-authored-by: lohit <lohit.jiddimani@gmail.com>
2024-08-21 12:52:49 +05:30

37 lines
535 B
Plaintext

meta {
name: setHeaders
type: http
seq: 8
}
get {
url: {{host}}/ping
body: none
auth: none
}
headers {
bruno: is-awesome
della: is-beautiful
}
assert {
res.status: eq 200
res.body: eq pong
}
script:pre-request {
req.setHeaders({
"content-type": "application/text",
"transaction-id": "foobar"
});
}
tests {
test("req.setHeaders()", function() {
const h = req.getHeaders();
expect(h['content-type']).to.equal("application/text");
expect(h['transaction-id']).to.equal("foobar");
});
}