fix: updates

This commit is contained in:
lohxt1
2024-12-05 15:45:36 +05:30
parent 482cb05d63
commit 4b4bd3bc95
7 changed files with 80 additions and 46 deletions

View File

@@ -0,0 +1,18 @@
meta {
name: getCollectionVar
type: http
seq: 9
}
get {
url: {{host}}/ping
body: none
auth: none
}
tests {
test("should get collection var in scripts", function() {
const testVar = bru.getCollectionVar("collection-var");
expect(testVar).to.equal("collection-var-value");
});
}