From 1ed2f3c83662c2e14fadc2f45ec582f8a66f4af1 Mon Sep 17 00:00:00 2001 From: alibw <69758323+alibw@users.noreply.github.com> Date: Sat, 16 Nov 2024 18:23:01 +0330 Subject: [PATCH] Changed in Test --- Rest.http | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Rest.http b/Rest.http index bf23676..cc72e01 100644 --- a/Rest.http +++ b/Rest.http @@ -22,7 +22,7 @@ GET /products?unit_price=is.null ?? body length == 0 ### -GET /products?product_name=in.(Chai,Chang) +GET /products?product_name=in.(Chai,Chang,Aniseed Syrup) ?? status == 200 ?? body length == 3 {{ @@ -31,6 +31,7 @@ GET /products?product_name=in.(Chai,Chang) test("OK in", () => { expect(responseItems[0].id).to.equal(1); + expect(responseItems[1].id).to.equal(2); expect(responseItems[2].id).to.equal(3); }) }}