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'); }); });