/* * Setup testing-library for react and jest-dom matchers * This file needs to be included in tsconfig for the types from @testing-library/jest-dom * to get picked up. See: https://github.com/testing-library/jest-dom#usage */ import { configure } from '@testing-library/react'; import '@testing-library/jest-dom'; configure({ testIdAttribute: 'data-test' });