grafana/public/test/setupTests.ts
Ashley Harrison 04bbafb4a6
Chore: Enable jest-fail-on-console to prevent console errors in unit tests (#46835)
* Add jest-fail-on-console

* Fix last 2 console warnings

* Update package syntax
2022-03-22 17:03:07 +00:00

9 lines
196 B
TypeScript

import '@testing-library/jest-dom';
import failOnConsole from 'jest-fail-on-console';
import { matchers } from './matchers';
failOnConsole({
shouldFailOnLog: true,
});
expect.extend(matchers);