mirror of
https://github.com/SomboChea/ui
synced 2024-11-11 00:54:26 +07:00
12 lines
367 B
TypeScript
12 lines
367 B
TypeScript
|
import { render } from '@testing-library/react';
|
||
|
import React from 'react';
|
||
|
|
||
|
import ThemeProvider from '../design-tokens/ThemeProvider';
|
||
|
|
||
|
const customRender = (node: React.ReactElement<any>, ...options: Array<any>) => {
|
||
|
return render(<ThemeProvider>{node}</ThemeProvider>, ...options);
|
||
|
};
|
||
|
|
||
|
export * from '@testing-library/react';
|
||
|
export { customRender as render };
|