mirror of
https://github.com/portainer/portainer.git
synced 2026-06-23 06:20:12 +00:00
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();
|
|
});
|