mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-03 12:05:52 +01:00
12 lines
284 B
JavaScript
12 lines
284 B
JavaScript
|
|
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);
|