Skip to content

Commit

Permalink
remove console from poller
Browse files Browse the repository at this point in the history
  • Loading branch information
leoromanovsky committed Feb 1, 2024
1 parent 1d859c5 commit b5546cc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/poller.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as td from 'testdouble';

import { POLL_INTERVAL_MS, POLL_JITTER_PCT } from './constants';
import initPoller, { pollerStats } from './poller';
import initPoller from './poller';

describe('poller', () => {
const testIntervalMs = POLL_INTERVAL_MS;
Expand All @@ -15,7 +15,6 @@ describe('poller', () => {
afterEach(() => {
td.reset();
jest.clearAllTimers();
console.log('>>>> POLLER STATS', pollerStats());
});

afterAll(() => {
Expand Down

0 comments on commit b5546cc

Please sign in to comment.