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.
33 lines
991 B
33 lines
991 B
import React from 'react';
|
|
import sinon from 'sinon';
|
|
import configureMockStore from 'redux-mock-store';
|
|
import { mountWithRouter } from '../../../../test/lib/render-helpers';
|
|
import MetaMetricsOptIn from './metametrics-opt-in.container';
|
|
|
|
describe('MetaMetricsOptIn', () => {
|
|
it('opt out of MetaMetrics', () => {
|
|
const props = {
|
|
history: {
|
|
push: sinon.spy(),
|
|
},
|
|
setParticipateInMetaMetrics: sinon.stub().resolves(),
|
|
participateInMetaMetrics: false,
|
|
};
|
|
const store = configureMockStore()({
|
|
metamask: {},
|
|
});
|
|
const wrapper = mountWithRouter(
|
|
<MetaMetricsOptIn.WrappedComponent {...props} />,
|
|
store,
|
|
);
|
|
const noThanksButton = wrapper.find(
|
|
'.btn-secondary.page-container__footer-button',
|
|
);
|
|
noThanksButton.simulate('click');
|
|
|
|
expect(
|
|
props.setParticipateInMetaMetrics.calledOnceWithExactly(false),
|
|
).toStrictEqual(true);
|
|
props.setParticipateInMetaMetrics.resetHistory();
|
|
});
|
|
});
|
|
|