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.
44 lines
1.1 KiB
44 lines
1.1 KiB
import React from 'react';
|
|
import sinon from 'sinon';
|
|
import { mount } from 'enzyme';
|
|
import ConfirmResetAccount from './confirm-reset-account.container';
|
|
|
|
describe('Confirm Reset Account', () => {
|
|
let wrapper;
|
|
|
|
const props = {
|
|
hideModal: sinon.spy(),
|
|
resetAccount: sinon.stub().resolves(),
|
|
};
|
|
|
|
beforeEach(() => {
|
|
wrapper = mount(<ConfirmResetAccount.WrappedComponent {...props} />, {
|
|
context: {
|
|
t: (str) => str,
|
|
},
|
|
});
|
|
});
|
|
|
|
afterEach(() => {
|
|
props.hideModal.resetHistory();
|
|
});
|
|
|
|
it('hides modal when nevermind button is clicked', () => {
|
|
const nevermind = wrapper.find(
|
|
'.btn-secondary.modal-container__footer-button',
|
|
);
|
|
nevermind.simulate('click');
|
|
|
|
expect(props.hideModal.calledOnce).toStrictEqual(true);
|
|
});
|
|
|
|
it('resets account and hides modal when reset button is clicked', async () => {
|
|
const reset = wrapper.find(
|
|
'.btn-danger-primary.modal-container__footer-button',
|
|
);
|
|
reset.simulate('click');
|
|
|
|
expect(await props.resetAccount.calledOnce).toStrictEqual(true);
|
|
expect(props.hideModal.calledOnce).toStrictEqual(true);
|
|
});
|
|
});
|
|
|