mirror of
https://github.com/usebruno/bruno.git
synced 2024-12-13 18:21:28 +01:00
753a576c3c
Safe Mode Sandbox using QuickJS Co-authored-by: Anoop M D <anoop.md1421@gmail.com> Co-authored-by: lohit <lohit.jiddimani@gmail.com>
28 lines
337 B
Plaintext
28 lines
337 B
Plaintext
meta {
|
|
name: setMethod
|
|
type: http
|
|
seq: 4
|
|
}
|
|
|
|
post {
|
|
url: {{host}}/ping
|
|
body: none
|
|
auth: none
|
|
}
|
|
|
|
|
|
assert {
|
|
res.status: eq 200
|
|
res.body: eq pong
|
|
}
|
|
|
|
script:pre-request {
|
|
req.setMethod("GET");
|
|
}
|
|
|
|
tests {
|
|
test("req.setMethod()()", function() {
|
|
const method = req.getMethod();
|
|
expect(method).to.equal("GET");
|
|
});
|
|
} |