Skip to content

Commit

Permalink
test: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
rpenido committed Oct 27, 2023
1 parent 81fb85f commit 3108b21
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ describe('<TaxonomyDetailSideCard/>', async () => {
});

it('should render title and description of the card', () => {
const { getByText } = render(<TaxonomyDetailSideCard taxonomy={data} />);
const { getByText } = render(<TaxonomyCardComponent taxonomy={data} />);
expect(getByText(data.name)).toBeInTheDocument();
expect(getByText(data.description)).toBeInTheDocument();
});
Expand Down

0 comments on commit 3108b21

Please sign in to comment.