From 62acbbd51a1a680b1fbe1ff114f70842a98ed6d5 Mon Sep 17 00:00:00 2001 From: Carmine DiMascio Date: Mon, 25 May 2020 21:01:12 -0400 Subject: [PATCH] fix test --- test/path.params.spec.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/path.params.spec.ts b/test/path.params.spec.ts index 8db3e770..9e04ce94 100644 --- a/test/path.params.spec.ts +++ b/test/path.params.spec.ts @@ -53,9 +53,8 @@ describe('path params', () => { it('should handle path parameter with style=simple', async () => request(app) .get(`${app.basePath}/multi_users/aa,bb,cc`) - // .expect(200) + .expect(200) .then((r) => { - console.log(r.body); - // expect(r.body.id).to.equal('c dimascio'); + expect(r.body.ids).to.deep.equal(['aa', 'bb', 'cc']); })); });