mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-23 00:13:24 +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>
33 lines
576 B
Plaintext
33 lines
576 B
Plaintext
meta {
|
|
name: setTimeout
|
|
type: http
|
|
seq: 1
|
|
}
|
|
|
|
get {
|
|
url: {{host}}/ping
|
|
body: none
|
|
auth: none
|
|
}
|
|
|
|
script:pre-request {
|
|
bru.setVar("test-js-set-timeout", "");
|
|
await new Promise((resolve, reject) => {
|
|
setTimeout(() => {
|
|
bru.setVar("test-js-set-timeout", "bruno");
|
|
resolve();
|
|
}, 1000);
|
|
});
|
|
|
|
const v = bru.getVar("test-js-set-timeout");
|
|
bru.setVar("test-js-set-timeout", v + "-is-awesome");
|
|
|
|
}
|
|
|
|
tests {
|
|
test("setTimeout()", function() {
|
|
const v = bru.getVar("test-js-set-timeout")
|
|
expect(v).to.eql("bruno-is-awesome");
|
|
});
|
|
}
|