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.
28 lines
727 B
28 lines
727 B
import React from 'react';
|
|
import sinon from 'sinon';
|
|
import { mount } from 'enzyme';
|
|
import ExperimentalTab from './experimental-tab.container';
|
|
|
|
describe('Experimental Tab', () => {
|
|
let wrapper;
|
|
|
|
const props = {
|
|
useTokenDetection: true,
|
|
setUseTokenDetection: sinon.spy(),
|
|
};
|
|
|
|
beforeEach(() => {
|
|
wrapper = mount(<ExperimentalTab.WrappedComponent {...props} />, {
|
|
context: {
|
|
t: (str) => str,
|
|
metricsEvent: () => undefined,
|
|
},
|
|
});
|
|
});
|
|
|
|
it('toggles Use Token detection', () => {
|
|
const useTokenDetection = wrapper.find({ type: 'checkbox' }).at(0);
|
|
useTokenDetection.simulate('click');
|
|
expect(props.setUseTokenDetection.calledOnce).toStrictEqual(true);
|
|
});
|
|
});
|
|
|