mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-03 14:44:27 +01:00
29 lines
782 B
JavaScript
29 lines
782 B
JavaScript
|
import React from 'react';
|
||
|
|
||
|
import { renderWithProvider } from '../../../../../test/jest';
|
||
|
import SwapsFooter from '.';
|
||
|
|
||
|
const createProps = (customProps = {}) => {
|
||
|
return {
|
||
|
onCancel: jest.fn(),
|
||
|
onSubmit: jest.fn(),
|
||
|
submitText: 'submitText',
|
||
|
disabled: false,
|
||
|
showTermsOfService: true,
|
||
|
...customProps,
|
||
|
};
|
||
|
};
|
||
|
|
||
|
describe('SwapsFooter', () => {
|
||
|
it('renders the component with initial props', () => {
|
||
|
const props = createProps();
|
||
|
const { container, getByText } = renderWithProvider(
|
||
|
<SwapsFooter {...props} />,
|
||
|
);
|
||
|
expect(getByText(props.submitText)).toBeInTheDocument();
|
||
|
expect(getByText('Back')).toBeInTheDocument();
|
||
|
expect(getByText('Terms of Service')).toBeInTheDocument();
|
||
|
expect(container).toMatchSnapshot();
|
||
|
});
|
||
|
});
|