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