We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Collection-level variables are not interpolated in Generate Code: the {{var}} is URL-escaped and included as-is.
{{var}}
bruno.json { "version": "1", "name": "bug", "type": "collection", "ignore": [ "node_modules", ".git" ] }
bug.bru meta { name: bug type: http seq: 2 }
get { url: http://localhost/bug/{{var}} body: none auth: none }
collection.bru vars:pre-request { var: var-value }
The text was updated successfully, but these errors were encountered:
Hey @bhaugeea,
Thanks for reporting this issue. We're aware of it and are working on it.
Also, thank you for submitting the PR! We're looking into it.
Sorry, something went wrong.
sanjai0py
ganesh-bruno
sreelakshmi-bruno
Successfully merging a pull request may close this issue.
I have checked the following:
Describe the bug
Collection-level variables are not interpolated in Generate Code: the
{{var}}
is URL-escaped and included as-is..bru file to reproduce the bug
bruno.json
{
"version": "1",
"name": "bug",
"type": "collection",
"ignore": [
"node_modules",
".git"
]
}
bug.bru
meta {
name: bug
type: http
seq: 2
}
get {
url: http://localhost/bug/{{var}}
body: none
auth: none
}
collection.bru
vars:pre-request {
var: var-value
}
Screenshots/Live demo link
The text was updated successfully, but these errors were encountered: