1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-31 00:16:47 +01:00

chore: remove console.log in test

This commit is contained in:
Ivar Conradi Østhus 2019-06-08 13:05:06 +02:00
parent 21c9678668
commit ab579fe710

View File

@ -24,7 +24,6 @@ test('should add dummy user object to all requests', t => {
.get('/api/admin/test') .get('/api/admin/test')
.expect(200) .expect(200)
.expect(res => { .expect(res => {
console.log(res.body);
t.true(res.body.email === 'none@unknown.com'); t.true(res.body.email === 'none@unknown.com');
}); });
}); });