mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-26 06:05:45 +00:00
27 lines
363 B
Plaintext
27 lines
363 B
Plaintext
meta {
|
|
name: getProcessEnv
|
|
type: http
|
|
seq: 6
|
|
}
|
|
|
|
get {
|
|
url: {{host}}/ping
|
|
body: none
|
|
auth: none
|
|
}
|
|
|
|
auth:awsv4 {
|
|
accessKeyId: a
|
|
secretAccessKey: b
|
|
sessionToken: c
|
|
service: d
|
|
region: e
|
|
profileName: f
|
|
}
|
|
|
|
tests {
|
|
test("bru.getProcessEnv()", function() {
|
|
const v = bru.getProcessEnv("PROC_ENV_VAR");
|
|
expect(v).to.equal("woof");
|
|
});
|
|
} |