Skip to content

Commit

Permalink
Remove console.logs from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-unfolds committed Mar 16, 2018
1 parent 68c38b7 commit e4d55e5
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests/front-end/qunit.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ let tableNames = [];
let tableKeys = [];

function checkName() {
console.log('checkName', db.name);
return db.name;
}

Expand Down Expand Up @@ -46,11 +45,9 @@ function checkUserDetails(callback) {
})
.then(res1 => db.user.toArray())
.then(user => {
console.log('user', user[0]);
return user[0];
})
.then(res2 => {
console.log('res', res);
callback(res);
});
}
Expand Down

0 comments on commit e4d55e5

Please sign in to comment.