Skip to content

Commit

Permalink
Try mocking react-select
Browse files Browse the repository at this point in the history
Signed-off-by: Taylor Smock <[email protected]>
  • Loading branch information
tsmock committed Feb 7, 2024
1 parent fabd78a commit b8d042e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions frontend/src/views/tests/project.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ jest.mock('../../components/comments/commentInput', () => {
CommentInputField: () => <></>
}
});
jest.mock('react-select', () => {
return () => <></>
});

test('CreateProject renders ProjectCreate', async () => {
renderWithRouter(
Expand Down

0 comments on commit b8d042e

Please sign in to comment.