mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-22 20:25:38 +00:00
23 lines
296 B
Plaintext
23 lines
296 B
Plaintext
meta {
|
|
name: isSafeMode
|
|
type: http
|
|
seq: 18
|
|
}
|
|
|
|
get {
|
|
url: {{host}}/ping
|
|
body: none
|
|
auth: inherit
|
|
}
|
|
|
|
script:pre-request {
|
|
test("bru.isSafeMode() returns true in safe mode", function() {
|
|
expect(bru.isSafeMode()).to.be.false;
|
|
});
|
|
}
|
|
|
|
settings {
|
|
encodeUrl: true
|
|
timeout: 0
|
|
}
|