From c238c547b8fbc6e822d2a1265f74d023478ba568 Mon Sep 17 00:00:00 2001 From: Clement Date: Sat, 4 May 2024 12:08:10 +0200 Subject: [PATCH] rm log --- Express/barAndCafe/test/app.test.ts | 1 - 1 file changed, 1 deletion(-) 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(); });