1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/ui/pages/swaps/swaps-footer/swaps-footer.test.js

29 lines
779 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();
});
});