Feat/import translation for deprecated pm import (#3388)

* feat: add translation for pm `tests[]`
* feat: add bru.deleteEnvVar function and update translations

---------

Co-authored-by: Pragadesh-45 <temporary7904@gmail.com>
This commit is contained in:
Pragadesh-45
2024-11-20 17:58:59 +05:30
committed by GitHub
parent 77d3fa7e1e
commit 23c22a96bc
4 changed files with 27 additions and 1 deletions

View File

@@ -65,6 +65,10 @@ class Bru {
this.envVariables[key] = value;
}
deleteEnvVar(key) {
delete this.envVariables[key];
}
getGlobalEnvVar(key) {
return this._interpolate(this.globalEnvironmentVariables[key]);
}