mirror of
https://github.com/SomboChea/ui
synced 2024-11-13 09:44:30 +07:00
19 lines
507 B
TypeScript
19 lines
507 B
TypeScript
import React from 'react';
|
|
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 };
|