initial copy from uni gitlab

This commit is contained in:
Leonard Krause
2018-04-27 01:02:14 +02:00
parent 0a84a9e2ae
commit 93a8735945
73 changed files with 5494 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import React from "react";
import { shallow } from "enzyme";
import { RoleCreateForm } from "./RoleCreateForm";
it("renders without crashing", () => {
shallow(
<RoleCreateForm
t={jest.fn()}
classes={{}}
theme={{}}
multi={{}}
initialValues={{}}
options={{}}
handleChangeMulti={jest.fn}
onSubmit={jest.fn}
id={{}}
/>
);
});