Skip to content

Commit

Permalink
fix: change 'test' to 'it' in unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
Danielle254 committed Oct 16, 2024
1 parent cb82b81 commit 5181c17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/AlertNotification/AlertNotification.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ describe('AlertNotification', () => {
expect(dismissButton).toBeInTheDocument();
});

test('should fire the toast.remove() function when dismiss button is clicked', async () => {
it('should fire the toast.remove() function when dismiss button is clicked', async () => {
const spyToast = jest.spyOn(toast, 'remove');
render(
<Alert
Expand Down

0 comments on commit 5181c17

Please sign in to comment.