Skip to content

Commit 9075fd6

Browse files
committed
Remove extra console.errors from test
1 parent cd382fc commit 9075fd6

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

test.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ test('ify-loader', function (t) {
3333
log: function (src) {
3434
const expected = fs.readFileSync(pkg, { encoding: 'utf8' })
3535
t.equal(src, expected, 'processed brfs from package.json')
36-
},
37-
error: console.error
36+
}
3837
}
3938
})
4039
})
@@ -118,8 +117,7 @@ test('glsl-transform', function (t) {
118117
log: function (shader) {
119118
const expected = fs.readFileSync(fixture, { encoding: 'utf8' })
120119
t.equal(shader + '\n', expected, 'processed brfs from package.json')
121-
},
122-
error: console.error
120+
}
123121
}
124122
})
125123
})

0 commit comments

Comments
 (0)