We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73119cb commit f21a0b7Copy full SHA for f21a0b7
src/poller.spec.ts
@@ -1,7 +1,7 @@
1
import * as td from 'testdouble';
2
3
import { POLL_INTERVAL_MS, POLL_JITTER_PCT } from './constants';
4
-import initPoller, { pollerStats } from './poller';
+import initPoller from './poller';
5
6
describe('poller', () => {
7
const testIntervalMs = POLL_INTERVAL_MS;
@@ -15,7 +15,6 @@ describe('poller', () => {
15
afterEach(() => {
16
td.reset();
17
jest.clearAllTimers();
18
- console.log('>>>> POLLER STATS', pollerStats());
19
});
20
21
afterAll(() => {
0 commit comments