diff --git a/frontend/src/components/Users/UserEmailComboBox/UserEmailComboBox.test.js b/frontend/src/components/Users/UserEmailComboBox/UserEmailComboBox.test.js new file mode 100644 index 0000000000..875f088a49 --- /dev/null +++ b/frontend/src/components/Users/UserEmailComboBox/UserEmailComboBox.test.js @@ -0,0 +1,18 @@ +import { render } from "@testing-library/react"; +import UserEmailComboBox from "./UserEmailComboBox.jsx"; +import { Provider } from "react-redux"; +import store from "../../../store"; + +describe("UserEmailComboBox", () => { + it("renders without crashing", () => { + render( + + + + ); + }); +}); + +const App = () => { + ; +}; diff --git a/frontend/src/pages/users/admin/UserAdmin.test.js b/frontend/src/pages/users/admin/UserAdmin.test.js new file mode 100644 index 0000000000..130e6f5367 --- /dev/null +++ b/frontend/src/pages/users/admin/UserAdmin.test.js @@ -0,0 +1,18 @@ +import { render } from "@testing-library/react"; +import { Provider } from "react-redux"; +import store from "../../../store"; +import UserAdmin from "./UserAdmin.jsx"; + +describe("UserAdmin", () => { + it("renders without crashing", () => { + render( + + + + ); + }); +}); + +const App = () => { + ; +};