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.
Tag:
Branch:
Tree:
e906bd8d0e
develop
feature/default_network_editable
v10.22.3
${ noResults }
25 lines
605 B
25 lines
605 B
import React from 'react';
|
|||
|
|||
|
import { renderWithProvider } from '../../../../test/jest';
|
||
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();
|
|||
});
|
|||
});
|