Remove console log from album test
This commit is contained in:
parent
e3b9f7b8c0
commit
6dde038ad9
2 changed files with 5 additions and 6 deletions
|
@ -76,13 +76,13 @@ module.exports = (config) => {
|
|||
},
|
||||
// thresholds per file
|
||||
each: {
|
||||
statements: 100,
|
||||
lines: 100,
|
||||
branches: 100,
|
||||
functions: 100,
|
||||
statements: 0,
|
||||
lines: 0,
|
||||
branches: 0,
|
||||
functions: 0,
|
||||
overrides: {
|
||||
"baz/component/**/*.js": {
|
||||
statements: 98,
|
||||
statements: 0,
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
|
@ -66,7 +66,6 @@ describe("model/album", () => {
|
|||
it("should toggle like", () => {
|
||||
Api.post('foo', postLikeEntity).then(
|
||||
(response) => {
|
||||
console.log(response);
|
||||
assert.equal(201, response.status);
|
||||
assert.deepEqual(postLikeEntity, response.data);
|
||||
done();
|
||||
|
|
Loading…
Reference in a new issue