utils.tsx 322 B

1234567891011121314
  1. import React from 'react';
  2. import { render as rtlRender } from '@testing-library/react';
  3. function render(ui, { ...options } = {}) {
  4. function Wrapper({ children }) {
  5. return <>{children}</>;
  6. }
  7. return rtlRender(ui, { wrapper: Wrapper, ...options });
  8. }
  9. export * from '@testing-library/react';
  10. export { render };