import React from 'react'; import { mountWithContexts } from '../enzymeHelpers'; import ExpandCollapse from '../../src/components/ExpandCollapse'; describe('', () => { const onCompact = jest.fn(); const onExpand = jest.fn(); const isCompact = false; test('initially renders without crashing', () => { const wrapper = mountWithContexts( ); expect(wrapper.length).toBe(1); wrapper.unmount(); }); });