Skip to content

Commit

Permalink
Remove extra console.errors from test
Browse files Browse the repository at this point in the history
  • Loading branch information
rreusser committed Sep 15, 2017
1 parent cd382fc commit 9075fd6
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ test('ify-loader', function (t) {
log: function (src) {
const expected = fs.readFileSync(pkg, { encoding: 'utf8' })
t.equal(src, expected, 'processed brfs from package.json')
},
error: console.error
}
}
})
})
Expand Down Expand Up @@ -118,8 +117,7 @@ test('glsl-transform', function (t) {
log: function (shader) {
const expected = fs.readFileSync(fixture, { encoding: 'utf8' })
t.equal(shader + '\n', expected, 'processed brfs from package.json')
},
error: console.error
}
}
})
})
Expand Down

0 comments on commit 9075fd6

Please sign in to comment.