You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-11-29 22:48:10 +02:00
Chore: Disable Jest console wrapper in tests
This commit is contained in:
16
jest.base-setup.js
Normal file
16
jest.base-setup.js
Normal file
@@ -0,0 +1,16 @@
|
||||
/* eslint-disable jest/require-top-level-describe */
|
||||
|
||||
module.exports = () => {
|
||||
// Disable the additional information that Jest adds to each console
|
||||
// statement. It's rarely needed and if it is it can be commented out here.
|
||||
|
||||
const jestConsole = console;
|
||||
|
||||
beforeEach(() => {
|
||||
global.console = require('console');
|
||||
});
|
||||
|
||||
afterEach(() => {
|
||||
global.console = jestConsole;
|
||||
});
|
||||
};
|
||||
Reference in New Issue
Block a user