mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 17:40:23 +03:00
27 lines
787 B
JavaScript
27 lines
787 B
JavaScript
import { shallow } from 'enzyme';
|
|
import React from 'react';
|
|
import { NavLink } from 'react-router-dom';
|
|
import asideMenuCreator from '../../src/common/AsideMenu';
|
|
|
|
describe('<AsideMenu />', () => {
|
|
let wrapped;
|
|
const DeleteServerButton = () => '';
|
|
|
|
beforeEach(() => {
|
|
const AsideMenu = asideMenuCreator(DeleteServerButton);
|
|
|
|
wrapped = shallow(<AsideMenu selectedServer={{ id: 'abc123' }} />);
|
|
});
|
|
afterEach(() => wrapped.unmount());
|
|
|
|
it('contains links to different sections', () => {
|
|
const links = wrapped.find(NavLink);
|
|
|
|
expect(links).toHaveLength(3);
|
|
links.forEach((link) => expect(link.prop('to')).toContain('abc123'));
|
|
});
|
|
|
|
it('contains a button to delete server', () => {
|
|
expect(wrapped.find(DeleteServerButton)).toHaveLength(1);
|
|
});
|
|
});
|