mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
34 lines
862 B
JavaScript
34 lines
862 B
JavaScript
import React from 'react';
|
|
import configureMockStore from 'redux-mock-store';
|
|
|
|
import {
|
|
renderWithProvider,
|
|
createSwapsMockStore,
|
|
} from '../../../../../test/jest';
|
|
import quoteDataRows from '../mock-quote-data';
|
|
import QuoteDetails from './quote-details';
|
|
|
|
const createProps = (customProps = {}) => {
|
|
return {
|
|
...quoteDataRows[0],
|
|
slippage: 2,
|
|
liquiditySourceKey: 'swapAggregator',
|
|
minimumAmountReceived: '2',
|
|
feeInEth: '0.0003',
|
|
metaMaskFee: 0.0205,
|
|
...customProps,
|
|
};
|
|
};
|
|
|
|
describe('ListItemSearch', () => {
|
|
it('renders the component with initial props', () => {
|
|
const store = configureMockStore()(createSwapsMockStore());
|
|
const props = createProps();
|
|
const { getByText } = renderWithProvider(
|
|
<QuoteDetails {...props} />,
|
|
store,
|
|
);
|
|
expect(getByText('Rate')).toBeInTheDocument();
|
|
});
|
|
});
|