Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
beforeEach(() => {
isTouchDevice.mockClear();
isTouchDevice.mockReturnValue(false);
});
describe('defaultProps', () => {
beforeEach(() => {
Flatpickr.mockClear();
isTouchDevice.mockClear();
isTouchDevice.mockReturnValue(true);
props = createTestProps();
wrapper = shallow();
wrapper.instance().componentDidMount();
});