mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-24 01:48:18 +03:00
24 lines
748 B
TypeScript
24 lines
748 B
TypeScript
import { shallow, ShallowWrapper } from 'enzyme';
|
|
import { Mock } from 'ts-mockery';
|
|
import shortUrlsCreator from '../../src/short-urls/ShortUrls';
|
|
import { ShortUrlsListProps } from '../../src/short-urls/ShortUrlsList';
|
|
|
|
describe('<ShortUrls />', () => {
|
|
let wrapper: ShallowWrapper;
|
|
const SearchBar = () => null;
|
|
const ShortUrlsList = () => null;
|
|
|
|
beforeEach(() => {
|
|
const ShortUrls = shortUrlsCreator(SearchBar, ShortUrlsList);
|
|
|
|
wrapper = shallow(
|
|
<ShortUrls {...Mock.all<ShortUrlsListProps>()} />,
|
|
);
|
|
});
|
|
afterEach(() => wrapper.unmount());
|
|
|
|
it('wraps a SearchBar and ShortUrlsList', () => {
|
|
expect(wrapper.find(SearchBar)).toHaveLength(1);
|
|
expect(wrapper.find(ShortUrlsList)).toHaveLength(1);
|
|
});
|
|
});
|