add: getName in collection

This commit is contained in:
poojabela
2025-04-30 15:36:44 +05:30
parent 261a36c435
commit ba9362ccb2

View File

@@ -0,0 +1,17 @@
meta {
name: getName
type: http
seq: 11
}
get {
url: {{host}}/ping
body: none
auth: inherit
}
tests {
test("Check if request name is getName", function () {
expect(req.getName()).to.eql("getName");
});
}