Fix merge conflicts and linting errors

This commit is contained in:
Marliana Lara
2019-01-25 16:49:46 -05:00
parent 21298c8872
commit 9048c34a7d
4 changed files with 61 additions and 163 deletions

View File

@@ -53,7 +53,7 @@ describe('<Breadcrumb />', () => {
];
routes.forEach(([location, crumbLength]) => {
const breadcrumbWrapper = mount(
breadcrumbWrapper = mount(
<MemoryRouter initialEntries={[location]}>
<Breadcrumbs
breadcrumbConfig={config}
@@ -63,8 +63,6 @@ describe('<Breadcrumb />', () => {
expect(breadcrumbWrapper.find('BreadcrumbItem')).toHaveLength(crumbLength);
breadcrumbWrapper.unmount();
})
});
});
});

View File

@@ -40,7 +40,7 @@ describe('<Lookup />', () => {
data={mockData}
/>
</I18nProvider>
);
);
const searchItem = wrapper.find('.pf-c-input-group__text#search');
searchItem.first().simulate('click');
wrapper.find('input[type="checkbox"]').simulate('change');