From 71b33ab05b53b62c8b271bd2995c94b2fc212dfd Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Wed, 7 Apr 2021 16:20:46 +0200 Subject: [PATCH] Removed console logs for now working tests ref #190 --- src/tests/stats/stats_get.spec.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/tests/stats/stats_get.spec.ts b/src/tests/stats/stats_get.spec.ts index 7709779..d71781e 100644 --- a/src/tests/stats/stats_get.spec.ts +++ b/src/tests/stats/stats_get.spec.ts @@ -52,15 +52,11 @@ describe('GET /api/stats/runners/* should return 200', () => { }); it('get by donations w/ auth should return 200', async () => { const res = await axios.get(base + '/api/stats/runners/donations', axios_config_stats); - console.log("################# Runners by donations #################"); - console.log(res.data); expect(res.status).toEqual(200); expect(res.headers['content-type']).toContain("application/json"); }); it('get by laptime w/ auth should return 200', async () => { const res = await axios.get(base + '/api/stats/runners/laptime', axios_config_stats); - console.log("################# Runners by laptime #################"); - console.log(res.data); expect(res.status).toEqual(200); expect(res.headers['content-type']).toContain("application/json"); });