From ab579fe71003613d404abffb71d83da3c588b024 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivar=20Conradi=20=C3=98sthus?= Date: Sat, 8 Jun 2019 13:05:06 +0200 Subject: [PATCH] chore: remove console.log in test --- lib/middleware/no-authentication.test.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/middleware/no-authentication.test.js b/lib/middleware/no-authentication.test.js index ce7d4f30c7..6dc1886c87 100644 --- a/lib/middleware/no-authentication.test.js +++ b/lib/middleware/no-authentication.test.js @@ -24,7 +24,6 @@ test('should add dummy user object to all requests', t => { .get('/api/admin/test') .expect(200) .expect(res => { - console.log(res.body); t.true(res.body.email === 'none@unknown.com'); }); });