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.
26 lines
744 B
26 lines
744 B
import React from 'react';
|
|
import sinon from 'sinon';
|
|
import { mount } from 'enzyme';
|
|
import TransactionConfirmed from './transaction-confirmed.container';
|
|
|
|
describe('Transaction Confirmed', () => {
|
|
it('clicks ok to submit and hide modal', () => {
|
|
const props = {
|
|
onSubmit: sinon.spy(),
|
|
hideModal: sinon.spy(),
|
|
};
|
|
const wrapper = mount(
|
|
<TransactionConfirmed.WrappedComponent {...props} />,
|
|
{
|
|
context: {
|
|
t: (str) => str,
|
|
},
|
|
},
|
|
);
|
|
const submit = wrapper.find('.btn-primary.modal-container__footer-button');
|
|
submit.simulate('click');
|
|
|
|
expect(props.onSubmit.calledOnce).toStrictEqual(true);
|
|
expect(props.hideModal.calledOnce).toStrictEqual(true);
|
|
});
|
|
});
|
|
|