setup.js 248 B

12345
  1. window.scroll = jest.fn()
  2. const originalErr = console.error.bind(console.error)
  3. // @TODO fix components which throw these warnings
  4. console.error = (...args) => !args[0].toString().includes('Unknown event handler property') && originalErr(...args)