Skip to content

Commit 6b3c299

Browse files
committed
fix: test
1 parent b3d86ef commit 6b3c299

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/components/Views/TradeWalletActions/TradeWalletActions.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ describe('TradeWalletActions', () => {
627627
expect(mockOnDismiss).not.toHaveBeenCalled();
628628
});
629629

630-
it('should not show Predict button on non-EVM networks', () => {
630+
it('should show Predict button on non-EVM networks', () => {
631631
(
632632
selectPredictEnabledFlag as jest.MockedFunction<
633633
typeof selectPredictEnabledFlag
@@ -655,6 +655,6 @@ describe('TradeWalletActions', () => {
655655

656656
expect(
657657
queryByTestId(WalletActionsBottomSheetSelectorsIDs.PREDICT_BUTTON),
658-
).toBeNull();
658+
).toBeDefined();
659659
});
660660
});

0 commit comments

Comments
 (0)