n00o

Results 10 comments of n00o

I would like to tackle this feature request because its annoying to have to remember to select an environment when first opening up a request. This just seems like a...

I am testing a branch for default environments for both the UI and CLI. If you have the time, @majkinetor test it out and see if this is what you...

To test the dev CLI app, I had to use a command like this in `packages/bruno-cli/bin` (excluding `--env` for testing): ```shell node bru.js run 'filename.bru' ``` Making sure to place...

> I initially wrote that but deleted it. It makes sense, but there are other defaults, all available in single place under Presets, so it makes sense to have environment...

You can fix this by using the Collection's **Headers** tab and add a `Authorization` header while setting its value to: `Bearer {{accessToken}}` Then every request inside of this collection will...

When you do `res.body` it gives you the response of the body in this case it is in JSON form so you can reference the descendent values in the same...

> > When you do `res.body` it gives you the response of the body in this case it is in JSON form so you can reference the descendent values in...

I think the issue is that you create your `onResponse` function but never actually call it. A much simpler solution would be not to include a function and do something...

It appears that `{{access_token}}` can't be interpolated by Bruno when it is inside of a Script section. Further confirmation of this can be found inside of the `Timeline` tab as...

I just tested this and found out that `setEnvVar()` only overrides values but doesn't create them. This should definitely be fixed so that it adds them too. Here are the...