setupTests.ts 197 B

123456789
  1. import '@testing-library/jest-dom';
  2. import failOnConsole from 'jest-fail-on-console';
  3. import { matchers } from './matchers';
  4. failOnConsole({
  5. shouldFailOnLog: true,
  6. });
  7. expect.extend(matchers);