Skip to content

Commit

Permalink
[test] Remove unnecessary async keyword from test (#38373)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeeshanTamboli committed Aug 8, 2023
1 parent f271b75 commit 5bf65a4
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 5bf65a4

Please sign in to comment.