Skip to content

Commit 668656e

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

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

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

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

105107
const button = getByRole('unstake-button');
106108

0 commit comments

Comments
 (0)