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/pages/first-time-flow/metametrics-opt-in/metametrics-opt-in.test.js

34 lines
989 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-default.page-container__footer-button',
);
noThanksButton.simulate('click');
expect(
props.setParticipateInMetaMetrics.calledOnceWithExactly(false),
).toStrictEqual(true);
props.setParticipateInMetaMetrics.resetHistory();
});
});