verdaccio-ui/src/utils/test-enzyme.ts

20 lines
551 B
TypeScript
Raw Normal View History

import { mount, shallow } from 'enzyme';
import ThemeProvider from '../design-tokens/ThemeProvider';
/* eslint-disable @typescript-eslint/explicit-function-return-type */
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 };