diff --git a/Express/barAndCafe/test/app.test.ts b/Express/barAndCafe/test/app.test.ts index a0435be..36afa62 100644 --- a/Express/barAndCafe/test/app.test.ts +++ b/Express/barAndCafe/test/app.test.ts @@ -31,7 +31,6 @@ describe("Test the root path", () => { request(app) .get("/") .then(response => { - console.log(response) expect(response.text).toEqual("hello world from dev") done(); });