mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
40 lines
1.2 KiB
JavaScript
40 lines
1.2 KiB
JavaScript
import React from 'react';
|
|
|
|
import { renderWithProvider } from '../../../../test/jest';
|
|
import MainQuoteSummary from '.';
|
|
|
|
const createProps = (customProps = {}) => {
|
|
return {
|
|
sourceValue: '2000000000000000000',
|
|
sourceDecimals: 18,
|
|
sourceSymbol: 'ETH',
|
|
destinationValue: '200000000000000000',
|
|
destinationDecimals: 18,
|
|
destinationSymbol: 'BAT',
|
|
...customProps,
|
|
};
|
|
};
|
|
|
|
describe('MainQuoteSummary', () => {
|
|
it('renders the component with initial props', () => {
|
|
const props = createProps();
|
|
const { getAllByText } = renderWithProvider(
|
|
<MainQuoteSummary {...props} />,
|
|
);
|
|
expect(getAllByText(props.sourceSymbol)).toHaveLength(2);
|
|
expect(getAllByText(props.destinationSymbol)).toHaveLength(2);
|
|
expect(
|
|
document.querySelector('.main-quote-summary__source-row'),
|
|
).toMatchSnapshot();
|
|
expect(
|
|
document.querySelector('.main-quote-summary__destination-row'),
|
|
).toMatchSnapshot();
|
|
expect(
|
|
document.querySelector('.main-quote-summary__quote-large'),
|
|
).toMatchSnapshot();
|
|
expect(
|
|
document.querySelector('.main-quote-summary__exchange-rate-container'),
|
|
).toMatchSnapshot();
|
|
});
|
|
});
|