-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: John DeAngelis <[email protected]>
- Loading branch information
1 parent
99b0290
commit 773819d
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
frontend/src/components/Users/UserEmailComboBox/UserEmailComboBox.test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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( | ||
<Provider store={store}> | ||
<App /> | ||
</Provider> | ||
); | ||
}); | ||
}); | ||
|
||
const App = () => { | ||
<UserEmailComboBox></UserEmailComboBox>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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( | ||
<Provider store={store}> | ||
<App /> | ||
</Provider> | ||
); | ||
}); | ||
}); | ||
|
||
const App = () => { | ||
<UserAdmin></UserAdmin>; | ||
}; |