1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-24 12:23:39 +02:00
metamask-extension/ui/app/pages/first-time-flow/metametrics-opt-in/tests/metametrics-opt-in.test.js

33 lines
963 B
JavaScript
Raw Normal View History

import assert from 'assert'
import React from 'react'
import sinon from 'sinon'
import configureMockStore from 'redux-mock-store'
import { mountWithRouter } from '../../../../../../test/lib/render-helpers'
import MetaMetricsOptIn from '..'
describe('MetaMetricsOptIn', function () {
it('opt out of MetaMetrics', function () {
const props = {
history: {
push: sinon.spy(),
},
setParticipateInMetaMetrics: sinon.stub().resolves(),
participateInMetaMetrics: false,
}
const store = configureMockStore()({
metamask: {},
})
const wrapper = mountWithRouter(
2020-11-03 00:41:28 +01:00
<MetaMetricsOptIn.WrappedComponent {...props} />,
store,
)
const noThanksButton = wrapper.find(
'.btn-default.page-container__footer-button',
)
noThanksButton.simulate('click')
assert.ok(props.setParticipateInMetaMetrics.calledOnceWithExactly(false))
props.setParticipateInMetaMetrics.resetHistory()
})
})