From 808b77d2c4e3bbc82e7551674429d2c1dd055139 Mon Sep 17 00:00:00 2001 From: Ivan Sekovanikj Date: Thu, 30 Jan 2025 11:11:30 +0100 Subject: [PATCH] fix: remove .only test mark --- test/unit/poll_manager.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/poll_manager.test.ts b/test/unit/poll_manager.test.ts index d1e1253bba..767b37e334 100644 --- a/test/unit/poll_manager.test.ts +++ b/test/unit/poll_manager.test.ts @@ -211,7 +211,7 @@ describe('PollManager', () => { } }); - it.only('populates pollCache only with new messages on client.queryChannels invocation', async () => { + it('populates pollCache only with new messages on client.queryChannels invocation', async () => { let channels = []; let pollMessages: MessageResponse[] = []; const spy = sinon.spy(client.polls, 'hydratePollCache');