import React from 'react';
import { mount } from 'enzyme';
import { I18nProvider } from '@lingui/react';
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 = mount(
);
expect(wrapper.length).toBe(1);
wrapper.unmount();
});
});