mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-03-10 09:33:51 +00:00
Fixed tests
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
import { shallow } from 'enzyme';
|
||||
import { Route } from 'react-router-dom';
|
||||
import createSettings from '../../src/settings/Settings';
|
||||
import { NoMenuLayout } from '../../src/common/NoMenuLayout';
|
||||
import { NavPillItem } from '../../src/utils/NavPills';
|
||||
|
||||
describe('<Settings />', () => {
|
||||
const Component = () => null;
|
||||
@@ -9,10 +11,19 @@ describe('<Settings />', () => {
|
||||
it('renders a no-menu layout with the expected settings sections', () => {
|
||||
const wrapper = shallow(<Settings />);
|
||||
const layout = wrapper.find(NoMenuLayout);
|
||||
const sections = wrapper.find('SettingsSections');
|
||||
const sections = wrapper.find(Route);
|
||||
|
||||
expect(layout).toHaveLength(1);
|
||||
expect(sections).toHaveLength(1);
|
||||
expect((sections.prop('items') as any[]).flat()).toHaveLength(6);
|
||||
expect(sections).toHaveLength(4);
|
||||
});
|
||||
|
||||
it('renders expected menu', () => {
|
||||
const wrapper = shallow(<Settings />);
|
||||
const items = wrapper.find(NavPillItem);
|
||||
|
||||
expect(items).toHaveLength(3);
|
||||
expect(items.first().prop('to')).toEqual('app');
|
||||
expect(items.at(1).prop('to')).toEqual('short-urls');
|
||||
expect(items.last().prop('to')).toEqual('others');
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user