mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-10-27 16:46:09 +01:00
12 lines
284 B
TypeScript
12 lines
284 B
TypeScript
|
|
import "./enzyme";
|
||
|
|
|
||
|
|
import { createMount, createShallow } from "enzyme-context";
|
||
|
|
import { routerContext } from "enzyme-context-react-router-4";
|
||
|
|
|
||
|
|
const plugins = {
|
||
|
|
history: routerContext()
|
||
|
|
};
|
||
|
|
|
||
|
|
export const mount = createMount(plugins);
|
||
|
|
export const shallow = createShallow(plugins);
|