finestructure / finestructure/Rester
Allow variable substitution in `variables` section
Open
- Dominant language
- Swift
- Stars
- 44
- Forks
- 2
- PR merge metrics
- No merged PRs in 30d
Description
For example, this should work if `TEST_ID` is an environment variable:
```
variables:
email: foo-${TEST_ID}@bar.com
```
Currently, as a workaround, `TEST_ID` needs to be injected in `requests`, i.e.:
```
variables:
username: foo
domain: bar.com
requests:
...
body:
json:
email: ${username}-${TEST_ID}@${domain}
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.