remove stray debugger

This commit is contained in:
picklesrus 2020-07-30 11:08:34 -04:00
parent 0036550ae8
commit a67a34a06c

View file

@ -167,7 +167,6 @@ describe('Navigation', () => {
const twoMin = 2 * 60 * 1000;
expect(setTimeout).toHaveBeenLastCalledWith(expect.any(Function), twoMin);
expect(navInstance.messageCountTimeoutId).not.toEqual(-1);
debugger;
navInstance.componentWillUnmount();
expect(clearTimeout).toHaveBeenCalledWith(expect.any(Number));
expect(navInstance.messageCountTimeoutId).toEqual(-1);