remove console.log

This commit is contained in:
Matteo Pagliazzi 2020-03-02 10:26:21 +01:00
parent c2a79e1d7c
commit 90f88c42f6

View file

@ -199,7 +199,6 @@ describe('User Model', () => {
user = await User.findById(user._id).exec();
const userToJSON = user.toJSON();
console.log(userToJSON.tags);
expect(userToJSON.tags.length).to.equal(1);
expect(userToJSON.tags[0]).to.have.all.keys(['id', 'name']);