From b0a70ac75ac1aec124e6913982e1a422ff2ebad1 Mon Sep 17 00:00:00 2001 From: loferris Date: Wed, 27 Sep 2023 14:32:02 -0700 Subject: [PATCH] updating type for test --- test/rowQueue.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/rowQueue.ts b/test/rowQueue.ts index cccf734a..f53dbf01 100644 --- a/test/rowQueue.ts +++ b/test/rowQueue.ts @@ -218,7 +218,7 @@ describe('Queues', () => { }); it('should cancel any pending insert calls', () => { - const fakeHandle = 1234 as unknown as NodeJS.Timer; + const fakeHandle = 1234 as unknown as NodeJS.Timeout; const stub = sandbox.stub(global, 'clearTimeout').withArgs(fakeHandle); queue.pending = fakeHandle;