Skip to content

Commit a187116

Browse files
fixup! test: Fix failing test
1 parent 1cfa3cc commit a187116

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

__tests__/components/stake/modals/StakingUnstakeModal.test.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,7 @@ describe('Staking Unstake Modal', () => {
100100

101101
fireEvent.focus(numberInput);
102102
await userEvent.type(numberInput, '10000', {});
103-
await waitFor(() => expect(numberInput).toHaveValue('10000'), {
104-
timeout: 5000,
105-
});
103+
await waitFor(() => expect(numberInput).toHaveValue('10000'));
106104

107105
const button = getByRole('unstake-button');
108106

0 commit comments

Comments
 (0)