mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Creation successful test improvements (#18256)
This commit is contained in:
parent
24eae1d3c6
commit
fa02f32e1b
@ -1,19 +1,30 @@
|
||||
import React from 'react';
|
||||
import { fireEvent } from '@testing-library/react';
|
||||
import reactRouterDom from 'react-router-dom';
|
||||
import configureMockStore from 'redux-mock-store';
|
||||
import thunk from 'redux-thunk';
|
||||
import { ONBOARDING_PRIVACY_SETTINGS_ROUTE } from '../../../helpers/constants/routes';
|
||||
import {
|
||||
ONBOARDING_PRIVACY_SETTINGS_ROUTE,
|
||||
ONBOARDING_PIN_EXTENSION_ROUTE,
|
||||
} from '../../../helpers/constants/routes';
|
||||
import {
|
||||
renderWithProvider,
|
||||
setBackgroundConnection,
|
||||
} from '../../../../test/jest';
|
||||
import CreationSuccessful from './creation-successful';
|
||||
|
||||
const mockHistoryPush = jest.fn();
|
||||
|
||||
const completeOnboardingStub = jest
|
||||
.fn()
|
||||
.mockImplementation(() => Promise.resolve());
|
||||
|
||||
jest.mock('react-router-dom', () => ({
|
||||
...jest.requireActual('react-router-dom'),
|
||||
useHistory: () => ({
|
||||
push: mockHistoryPush,
|
||||
}),
|
||||
}));
|
||||
|
||||
describe('Creation Successful Onboarding View', () => {
|
||||
const mockStore = {
|
||||
metamask: {
|
||||
@ -25,18 +36,25 @@ describe('Creation Successful Onboarding View', () => {
|
||||
const store = configureMockStore([thunk])(mockStore);
|
||||
setBackgroundConnection({ completeOnboarding: completeOnboardingStub });
|
||||
|
||||
const pushMock = jest.fn();
|
||||
beforeAll(() => {
|
||||
jest
|
||||
.spyOn(reactRouterDom, 'useHistory')
|
||||
.mockImplementation()
|
||||
.mockReturnValue({ push: pushMock });
|
||||
afterEach(() => {
|
||||
jest.resetAllMocks();
|
||||
});
|
||||
|
||||
it('should redirect to privacy-settings view when "Advanced configuration" button is clicked', () => {
|
||||
const { getByText } = renderWithProvider(<CreationSuccessful />, store);
|
||||
const privacySettingsButton = getByText('Advanced configuration');
|
||||
fireEvent.click(privacySettingsButton);
|
||||
expect(pushMock).toHaveBeenCalledWith(ONBOARDING_PRIVACY_SETTINGS_ROUTE);
|
||||
expect(mockHistoryPush).toHaveBeenCalledWith(
|
||||
ONBOARDING_PRIVACY_SETTINGS_ROUTE,
|
||||
);
|
||||
});
|
||||
|
||||
it('should route to pin extension route when "Got it" button is clicked', () => {
|
||||
const { getByText } = renderWithProvider(<CreationSuccessful />, store);
|
||||
const gotItButton = getByText('Got it!');
|
||||
fireEvent.click(gotItButton);
|
||||
expect(mockHistoryPush).toHaveBeenCalledWith(
|
||||
ONBOARDING_PIN_EXTENSION_ROUTE,
|
||||
);
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user