From ef9bde9a5a9e392b007907bb920fd74937aea9ab Mon Sep 17 00:00:00 2001 From: Carmine DiMascio Date: Wed, 17 Jul 2019 20:27:55 -0400 Subject: [PATCH] re-enable tests --- test/routes.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/routes.spec.ts b/test/routes.spec.ts index 584672a7..de28b092 100644 --- a/test/routes.spec.ts +++ b/test/routes.spec.ts @@ -14,7 +14,7 @@ const basePath = (app).basePath; (app).server.close(); }); describe(`GET ${basePath}/pets`, () => { - it.only('should throw 400 on missing required query parameter', async () => + it('should throw 400 on missing required query parameter', async () => request(app) .get(`${basePath}/pets`) .set('Accept', 'application/json')