Skip to content

Commit

Permalink
Remove unnecessary async from test
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeeshanTamboli committed Aug 8, 2023
1 parent 07aad34 commit fb1a5fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ describe('<NumberInput />', () => {
expect(input.value).to.equal('9');
});

it('clicking the increment and decrement buttons changes the value based on shiftMultiplier if the Shift key is held', async () => {
it('clicking the increment and decrement buttons changes the value based on shiftMultiplier if the Shift key is held', () => {
const handleChange = spy();

const { getByTestId } = render(
Expand Down

0 comments on commit fb1a5fb

Please sign in to comment.