Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
cdimascio committed May 26, 2020
1 parent 2603fd9 commit 62acbbd
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions test/path.params.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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']);
}));
});

0 comments on commit 62acbbd

Please sign in to comment.