mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-30 08:09:15 +01:00
c2218ad941
* Convert Confirm Page Container test to tlr. Add test ids to associated components. * Convert Welcome component to tlr. * Update ui/pages/first-time-flow/welcome/welcome.test.js Co-authored-by: Ariella Vu <20778143+digiwand@users.noreply.github.com> * Update ui/components/app/confirm-page-container/confirm-page-container-container.test.js Co-authored-by: Ariella Vu <20778143+digiwand@users.noreply.github.com> * Remove unsused, commented out, lines Co-authored-by: Ariella Vu <20778143+digiwand@users.noreply.github.com>
49 lines
1.3 KiB
JavaScript
49 lines
1.3 KiB
JavaScript
import React from 'react';
|
|
import sinon from 'sinon';
|
|
import { fireEvent, screen } from '@testing-library/react';
|
|
import { renderWithProvider } from '../../../../test/lib/render-helpers';
|
|
import Welcome from './welcome.container';
|
|
|
|
describe('Welcome', () => {
|
|
afterAll(() => {
|
|
sinon.restore();
|
|
});
|
|
|
|
it('routes to the metametrics screen when participateInMetaMetrics is not initialized', () => {
|
|
const props = {
|
|
history: {
|
|
push: sinon.spy(),
|
|
},
|
|
};
|
|
|
|
renderWithProvider(<Welcome.WrappedComponent {...props} />);
|
|
|
|
const getStartedButton = screen.getByTestId('first-time-flow__button');
|
|
|
|
fireEvent.click(getStartedButton);
|
|
|
|
expect(props.history.push.getCall(0).args[0]).toStrictEqual(
|
|
'/initialize/metametrics-opt-in',
|
|
);
|
|
});
|
|
|
|
it('routes to select action when participateInMetaMetrics is initialized', () => {
|
|
const props = {
|
|
welcomeScreenSeen: true,
|
|
participateInMetaMetrics: false,
|
|
history: {
|
|
push: sinon.spy(),
|
|
},
|
|
};
|
|
|
|
renderWithProvider(<Welcome.WrappedComponent {...props} />);
|
|
|
|
const getStartedButton = screen.getByTestId('first-time-flow__button');
|
|
|
|
fireEvent.click(getStartedButton);
|
|
expect(props.history.push.getCall(0).args[0]).toStrictEqual(
|
|
'/initialize/select-action',
|
|
);
|
|
});
|
|
});
|