import React from 'react';
import { fireEvent } from '@testing-library/react';
import { renderWithProvider } from '../../../../../test/lib/render-helpers';
import TransactionConfirmed from '.';
describe('Transaction Confirmed', () => {
it('should match snapshot', () => {
const { container } = renderWithProvider(
,
);
expect(container).toMatchSnapshot();
});
it('clicks ok to submit and hide modal', () => {
const props = {
onSubmit: jest.fn(),
hideModal: jest.fn(),
};
const { queryByText } = renderWithProvider(
,
);
fireEvent.click(queryByText('[ok]'));
expect(props.onSubmit).toHaveBeenCalled();
expect(props.hideModal).toHaveBeenCalled();
});
});