Skip to content

Commit 86d3e06

Browse files
authored
test(react): Make react unit tests silent (#6545)
Currently, we have a bunch of `console.warn()` outputs there which mess up the test logs a bit.
1 parent 36488ec commit 86d3e06

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packages/react/jest.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@ const baseConfig = require('../../jest/jest.config.js');
33
module.exports = {
44
...baseConfig,
55
testEnvironment: 'jsdom',
6+
// We have some tests that trigger warnings, which mess up the test logs
7+
silent: true,
68
};

0 commit comments

Comments
 (0)