Commit a67a34a0 authored by picklesrus's avatar picklesrus

remove stray debugger

parent 0036550a
...@@ -167,7 +167,6 @@ describe('Navigation', () => { ...@@ -167,7 +167,6 @@ describe('Navigation', () => {
const twoMin = 2 * 60 * 1000; const twoMin = 2 * 60 * 1000;
expect(setTimeout).toHaveBeenLastCalledWith(expect.any(Function), twoMin); expect(setTimeout).toHaveBeenLastCalledWith(expect.any(Function), twoMin);
expect(navInstance.messageCountTimeoutId).not.toEqual(-1); expect(navInstance.messageCountTimeoutId).not.toEqual(-1);
debugger;
navInstance.componentWillUnmount(); navInstance.componentWillUnmount();
expect(clearTimeout).toHaveBeenCalledWith(expect.any(Number)); expect(clearTimeout).toHaveBeenCalledWith(expect.any(Number));
expect(navInstance.messageCountTimeoutId).toEqual(-1); expect(navInstance.messageCountTimeoutId).toEqual(-1);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment