test: disable console logging to reduce noise
This commit is contained in:
parent
c556d9500b
commit
3c4507b198
1 changed files with 2 additions and 0 deletions
|
|
@ -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']);
|
||||
|
|
|
|||
Loading…
Reference in a new issue