mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 01:20:24 +03:00
Fixed tests
This commit is contained in:
parent
f24c8052a9
commit
ae9e5a0566
3 changed files with 17 additions and 4 deletions
|
@ -54,7 +54,7 @@ describe('<App />', () => {
|
|||
const routes = wrapper.find(Route);
|
||||
const expectedPaths = [
|
||||
undefined,
|
||||
'/settings',
|
||||
'/settings/*',
|
||||
'/manage-servers',
|
||||
'/server/create',
|
||||
'/server/:serverId/edit',
|
||||
|
|
|
@ -35,6 +35,8 @@ describe('<MainHeader />', () => {
|
|||
[ '/foo', false ],
|
||||
[ '/bar', false ],
|
||||
[ '/settings', true ],
|
||||
[ '/settings/foo', true ],
|
||||
[ '/settings/bar', true ],
|
||||
])('sets link to settings as active only when current path is settings', (currentPath, isActive) => {
|
||||
const wrapper = createWrapper(currentPath);
|
||||
const settingsLink = wrapper.find(NavLink);
|
||||
|
|
|
@ -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');
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue