2021-09-20 22:23:39 +03:00
|
|
|
import { shallow } from 'enzyme';
|
|
|
|
import createSettings from '../../src/settings/Settings';
|
|
|
|
import NoMenuLayout from '../../src/common/NoMenuLayout';
|
|
|
|
|
|
|
|
describe('<Settings />', () => {
|
|
|
|
const Component = () => null;
|
|
|
|
const Settings = createSettings(Component, Component, Component, Component);
|
|
|
|
|
2021-09-20 23:00:34 +03:00
|
|
|
it('renders a no-menu layout with the expected settings sections', () => {
|
2021-09-20 22:23:39 +03:00
|
|
|
const wrapper = shallow(<Settings />);
|
|
|
|
const layout = wrapper.find(NoMenuLayout);
|
|
|
|
const sections = wrapper.find('SettingsSections');
|
|
|
|
|
|
|
|
expect(layout).toHaveLength(1);
|
|
|
|
expect(sections).toHaveLength(1);
|
|
|
|
expect((sections.prop('items') as any[]).flat()).toHaveLength(4); // eslint-disable-line @typescript-eslint/no-unnecessary-type-assertion
|
|
|
|
});
|
|
|
|
});
|