remove test debuggers

This commit is contained in:
John Mitchell
2019-01-25 16:17:58 -05:00
parent 54e79a93d9
commit dd522c240e

View File

@@ -26,7 +26,6 @@ describe('<Lookup />', () => {
</I18nProvider> </I18nProvider>
); );
expect(spy).not.toHaveBeenCalled(); expect(spy).not.toHaveBeenCalled();
debugger;
const searchItem = wrapper.find('.pf-c-input-group__text#search'); const searchItem = wrapper.find('.pf-c-input-group__text#search');
searchItem.first().simulate('click'); searchItem.first().simulate('click');
expect(spy).toHaveBeenCalled(); expect(spy).toHaveBeenCalled();
@@ -42,7 +41,6 @@ describe('<Lookup />', () => {
/> />
</I18nProvider> </I18nProvider>
); );
debugger;
const searchItem = wrapper.find('.pf-c-input-group__text#search'); const searchItem = wrapper.find('.pf-c-input-group__text#search');
searchItem.first().simulate('click'); searchItem.first().simulate('click');
wrapper.find('input[type="checkbox"]').simulate('change'); wrapper.find('input[type="checkbox"]').simulate('change');