A Metamask fork with Infura removed and default networks editable
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.
 
 
 
 
 
ciphermask/ui/components/app/modals/confirm-reset-account/confirm-reset-account.test.js

41 lines
1.2 KiB

import React from 'react';
import { fireEvent } from '@testing-library/react';
import { renderWithProvider } from '../../../../../test/lib/render-helpers';
import ConfirmResetAccount from '.';
describe('Confirm Reset Account', () => {
const props = {
hideModal: jest.fn(),
resetAccount: jest.fn().mockResolvedValue(),
};
it('should match snapshot', () => {
const { container } = renderWithProvider(
<ConfirmResetAccount.WrappedComponent {...props} />,
);
expect(container).toMatchSnapshot();
});
it('hides modal when nevermind button is clicked', () => {
const { queryByText } = renderWithProvider(
<ConfirmResetAccount.WrappedComponent {...props} />,
);
fireEvent.click(queryByText('[nevermind]'));
expect(props.resetAccount).not.toHaveBeenCalled();
expect(props.hideModal).toHaveBeenCalled();
});
it('resets account and hides modal when reset button is clicked', async () => {
const { queryByText } = renderWithProvider(
<ConfirmResetAccount.WrappedComponent {...props} />,
);
fireEvent.click(queryByText('[reset]'));
expect(props.resetAccount).toHaveBeenCalled();
expect(props.hideModal).toHaveBeenCalled();
});
});