bruno/packages/bruno-lang/v2/tests/fixtures/collection.bru

54 lines
714 B
Plaintext
Raw Normal View History

meta {
type: collection
}
headers {
content-type: application/json
Authorization: Bearer 123
~transaction-id: {{transactionId}}
}
auth {
mode: none
}
auth:basic {
username: john
password: secret
}
auth:wsse {
username: john
password: secret
}
auth:bearer {
token: 123
}
2023-10-28 16:59:50 +02:00
auth:digest {
username: john
password: secret
}
vars:pre-request {
departingDate: 2020-01-01
~returningDate: 2020-01-02
}
vars:post-response {
~transactionId: $res.body.transactionId
}
script:pre-request {
console.log("In Collection pre Request Script");
}
script:post-response {
console.log("In Collection post Request Script");
}
docs {
This request needs auth token to be set in the headers.
}