8 lines
141 B
TypeScript
8 lines
141 B
TypeScript
import { cleanup, configure } from '@testing-library/react';
|
|
|
|
configure({ testIdAttribute: 'data-cy' });
|
|
|
|
afterEach(() => {
|
|
cleanup();
|
|
});
|