verdaccio-ui/src/utils/test-react-testing-library.tsx

13 lines
437 B
TypeScript
Raw Normal View History

import { render } from '@testing-library/react';
import React from 'react';
import ThemeProvider from '../design-tokens/ThemeProvider';
/* eslint-disable @typescript-eslint/explicit-function-return-type */
const customRender = (node: React.ReactElement<any>, ...options: Array<any>) => {
return render(<ThemeProvider>{node}</ThemeProvider>, ...options);
};
export * from '@testing-library/react';
export { customRender as render };