You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.5 KiB
47 lines
1.5 KiB
import React from 'react';
|
|
import configureMockStore from 'redux-mock-store';
|
|
import thunk from 'redux-thunk';
|
|
|
|
import {
|
|
renderWithProvider,
|
|
createSwapsMockStore,
|
|
setBackgroundConnection,
|
|
} from '../../../../test/jest';
|
|
import BuildQuote from '.';
|
|
|
|
const middleware = [thunk];
|
|
const createProps = (customProps = {}) => {
|
|
return {
|
|
inputValue: '5',
|
|
onInputChange: jest.fn(),
|
|
ethBalance: '6 ETH',
|
|
setMaxSlippage: jest.fn(),
|
|
maxSlippage: 15,
|
|
selectedAccountAddress: 'selectedAccountAddress',
|
|
isFeatureFlagLoaded: false,
|
|
...customProps,
|
|
};
|
|
};
|
|
|
|
setBackgroundConnection({
|
|
resetPostFetchState: jest.fn(),
|
|
});
|
|
|
|
describe('BuildQuote', () => {
|
|
it('renders the component with initial props', () => {
|
|
const store = configureMockStore(middleware)(createSwapsMockStore());
|
|
const props = createProps();
|
|
const { getByText } = renderWithProvider(<BuildQuote {...props} />, store);
|
|
expect(getByText('Swap from')).toBeInTheDocument();
|
|
expect(getByText('Swap to')).toBeInTheDocument();
|
|
expect(getByText('ETH')).toBeInTheDocument();
|
|
expect(getByText('Slippage Tolerance')).toBeInTheDocument();
|
|
expect(getByText('2%')).toBeInTheDocument();
|
|
expect(getByText('3%')).toBeInTheDocument();
|
|
expect(getByText('Review Swap')).toBeInTheDocument();
|
|
expect(
|
|
document.querySelector('.slippage-buttons__button-group'),
|
|
).toMatchSnapshot();
|
|
expect(document.querySelector('.swaps-footer')).toMatchSnapshot();
|
|
});
|
|
});
|
|
|