Skip to content

Commit

Permalink
fix: fix input label to be "Not soon"
Browse files Browse the repository at this point in the history
  • Loading branch information
kweeuhree committed Sep 15, 2024
1 parent bab0fc6 commit 3b491b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/List.test.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ describe('List Component', () => {
expect(screen.getByLabelText('Item Name:')).toBeInTheDocument();
expect(screen.getByLabelText('Soon')).toBeInTheDocument();
expect(screen.getByLabelText('Kind of soon')).toBeInTheDocument();
expect(screen.getByLabelText('Not Soon')).toBeInTheDocument();
expect(screen.getByLabelText('Not soon')).toBeInTheDocument();
expect(screen.getByText('Submit')).toBeInTheDocument();
});
});

0 comments on commit 3b491b4

Please sign in to comment.