bruno/packages/bruno-tests/collection/scripting/api/bru/getEnvName.bru

24 lines
368 B
Plaintext
Raw Normal View History

meta {
name: getEnvName
type: http
seq: 1
}
get {
url: {{host}}/ping
body: none
auth: none
}
script:pre-request {
const envName = bru.getEnvName();
bru.setVar("testEnvName", envName);
}
tests {
test("should get env name in scripts", function() {
const testEnvName = bru.getVar("testEnvName");
expect(testEnvName).to.equal("Prod");
});
}