Files
bruno/packages/bruno-tests/collection/scripting/api/bru/getCollectionName.bru
2025-04-30 17:25:42 +05:30

18 lines
267 B
Plaintext

meta {
name: getCollectionName
type: http
seq: 13
}
get {
url: {{host}}/ping
body: none
auth: inherit
}
tests {
test("Check if collection name is bruno-testbench", function () {
expect(bru.getCollectionName()).to.eql("bruno-testbench");
});
}