mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-06 21:45:43 +01:00
use reflow to migrate from flow to typescript
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
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');
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user