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.
25 lines
605 B
25 lines
605 B
4 years ago
|
import React from 'react';
|
||
|
|
||
4 years ago
|
import { renderWithProvider } from '../../../../test/jest';
|
||
4 years ago
|
import SelectQuotePopover from '.';
|
||
|
|
||
|
const createProps = (customProps = {}) => {
|
||
|
return {
|
||
|
onClose: jest.fn(),
|
||
|
onSubmit: jest.fn(),
|
||
|
swapToSymbol: 'ETH',
|
||
|
initialAggId: 'initialAggId',
|
||
|
onQuoteDetailsIsOpened: jest.fn(),
|
||
|
...customProps,
|
||
|
};
|
||
|
};
|
||
|
|
||
|
describe('SelectQuotePopover', () => {
|
||
|
it('renders the component with initial props', () => {
|
||
|
const { container } = renderWithProvider(
|
||
|
<SelectQuotePopover {...createProps()} />,
|
||
|
);
|
||
|
expect(container).toMatchSnapshot();
|
||
|
});
|
||
|
});
|