mirror of
https://github.com/SomboChea/ui
synced 2024-11-13 09:44:30 +07:00
18 lines
480 B
TypeScript
18 lines
480 B
TypeScript
|
import { mount, shallow } from 'enzyme';
|
||
|
|
||
|
import ThemeProvider from '../design-tokens/ThemeProvider';
|
||
|
|
||
|
const shallowWithTheme = (element: React.ReactElement<any>, ...props): any =>
|
||
|
shallow(element, {
|
||
|
wrappingComponent: ThemeProvider,
|
||
|
...props,
|
||
|
});
|
||
|
|
||
|
const mountWithTheme = (element: React.ReactElement<any>, ...props): any =>
|
||
|
mount(element, {
|
||
|
wrappingComponent: ThemeProvider,
|
||
|
...props,
|
||
|
});
|
||
|
|
||
|
export { mountWithTheme as mount, shallowWithTheme as shallow };
|