test: disable console logging to reduce noise

This commit is contained in:
WebStreamr 2025-08-31 19:49:05 +00:00
parent c556d9500b
commit 3c4507b198
No known key found for this signature in database

View file

@ -9,6 +9,8 @@ beforeEach(() => {
jest.spyOn(Date, 'now').mockImplementation(() => 639837296000);
});
console.log = console.warn = console.error = console.info = console.debug = () => { /* disable in favor of logger */ };
let dispatcher: Dispatcher;
if (process.env['ALL_PROXY']) {
const proxyUrl = new URL(process.env['ALL_PROXY']);