Skip to content

Commit 07998a0

Browse files
✅ mute console.error output in bufferedData console log test
stub console.error in bufferedData.spec.ts so the test still validates console log buffering without printing noisy test output.
1 parent 38b2935 commit 07998a0

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

packages/core/src/domain/bufferedData.spec.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ describe('startBufferingData', () => {
136136
})
137137

138138
it('collects console logs', (done) => {
139+
spyOn(console, 'error').and.callFake(noop)
139140
const { observable, stop } = startBufferingData()
140141

141142
registerCleanupTask(() => {

0 commit comments

Comments
 (0)