mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
25 lines
605 B
JavaScript
25 lines
605 B
JavaScript
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();
|
|
});
|
|
});
|