mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-06 13:35:44 +01:00
35 lines
860 B
TypeScript
35 lines
860 B
TypeScript
|
|
import React from 'react';
|
||
|
|
import { shallow, mount } from '@scm-manager/ui-tests/enzyme-router';
|
||
|
|
import '@scm-manager/ui-tests/enzyme';
|
||
|
|
import '@scm-manager/ui-tests/i18n';
|
||
|
|
|
||
|
|
import EditRepoNavLink from './EditRepoNavLink';
|
||
|
|
|
||
|
|
describe('GeneralNavLink', () => {
|
||
|
|
it('should render nothing, if the modify link is missing', () => {
|
||
|
|
const repository = {
|
||
|
|
_links: {},
|
||
|
|
};
|
||
|
|
|
||
|
|
const navLink = shallow(
|
||
|
|
<EditRepoNavLink repository={repository} editUrl="" />,
|
||
|
|
);
|
||
|
|
expect(navLink.text()).toBe('');
|
||
|
|
});
|
||
|
|
|
||
|
|
it('should render the navLink', () => {
|
||
|
|
const repository = {
|
||
|
|
_links: {
|
||
|
|
update: {
|
||
|
|
href: '/repositories',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
const navLink = mount(
|
||
|
|
<EditRepoNavLink repository={repository} editUrl="" />,
|
||
|
|
);
|
||
|
|
expect(navLink.text()).toBe('repositoryRoot.menu.generalNavLink');
|
||
|
|
});
|
||
|
|
});
|