mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-15 12:46:04 +05:30
24 lines
659 B
JavaScript
24 lines
659 B
JavaScript
import React from 'react';
|
|
|
|
import { shallow } from 'enzyme';
|
|
|
|
import ChangePassword from 'components/profile/changePassword/ChangePassword';
|
|
|
|
describe('<ChangePassword />', () => {
|
|
it('renders two <Input /> components', () => {
|
|
const component = shallow(<ChangePassword onSubmit={() => {}} />);
|
|
|
|
expect(component.find('Input')).to.have.length(2);
|
|
});
|
|
|
|
|
|
it('should call onSubmit if passwords entered', () => {
|
|
const onSubmit = sinon.spy();
|
|
const component = shallow(<ChangePassword onSubmit={onSubmit} />);
|
|
|
|
component.find('Form').simulate('submit');
|
|
|
|
sinon.assert.calledOnce(onSubmit);
|
|
});
|
|
});
|