Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
micaelae committed Dec 16, 2024
1 parent 63df6a8 commit a27e664
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ui/pages/bridge/prepare/bridge-cta-button.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ describe('BridgeCTAButton', () => {
bridgeSliceOverrides: { fromTokenInputValue: 1 },
});
const { container, getByText } = renderWithProvider(
<BridgeCTAButton />,
<BridgeCTAButton onFetchNewQuotes={jest.fn()} />,
configureStore(mockStore),
);

Expand Down Expand Up @@ -54,7 +54,7 @@ describe('BridgeCTAButton', () => {
},
});
const { getByText } = renderWithProvider(
<BridgeCTAButton />,
<BridgeCTAButton onFetchNewQuotes={jest.fn()} />,
configureStore(mockStore),
);

Expand Down Expand Up @@ -83,7 +83,7 @@ describe('BridgeCTAButton', () => {
},
});
const { getByText, container } = renderWithProvider(
<BridgeCTAButton />,
<BridgeCTAButton onFetchNewQuotes={jest.fn()} />,
configureStore(mockStore),
);

Expand Down Expand Up @@ -118,7 +118,7 @@ describe('BridgeCTAButton', () => {
},
});
const { getByText, getByRole } = renderWithProvider(
<BridgeCTAButton />,
<BridgeCTAButton onFetchNewQuotes={jest.fn()} />,
configureStore(mockStore),
);

Expand Down Expand Up @@ -159,7 +159,7 @@ describe('BridgeCTAButton', () => {
},
});
const { container } = renderWithProvider(
<BridgeCTAButton />,
<BridgeCTAButton onFetchNewQuotes={jest.fn()} />,
configureStore(mockStore),
);

Expand Down Expand Up @@ -199,7 +199,7 @@ describe('BridgeCTAButton', () => {
},
});
const { getByText, getByRole, container } = renderWithProvider(
<BridgeCTAButton />,
<BridgeCTAButton onFetchNewQuotes={jest.fn()} />,
configureStore(mockStore),
);

Expand Down

0 comments on commit a27e664

Please sign in to comment.