mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-23 12:45:38 +00:00
* feat: Enhance EnvironmentVariables component with read-only support for non-string values * feat: minor refactor and cleanup worker app state * fix: playwright test flow --------- Co-authored-by: Bijin Bruno <bijin@usebruno.com>
17 lines
236 B
Plaintext
17 lines
236 B
Plaintext
meta {
|
|
name: set-global-nonstring
|
|
type: http
|
|
seq: 1
|
|
}
|
|
|
|
get {
|
|
url: https://example.com
|
|
body: none
|
|
auth: none
|
|
}
|
|
|
|
script:post-response {
|
|
bru.setGlobalEnvVar('numericVar', 170001);
|
|
bru.setGlobalEnvVar('booleanVar', true);
|
|
}
|