mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 17:40:23 +03:00
8 lines
261 B
TypeScript
8 lines
261 B
TypeScript
import { render } from '@testing-library/react';
|
|
import userEvent from '@testing-library/user-event';
|
|
import type { ReactElement } from 'react';
|
|
|
|
export const renderWithEvents = (element: ReactElement) => ({
|
|
user: userEvent.setup(),
|
|
...render(element),
|
|
});
|