Skip to content
This repository was archived by the owner on Feb 7, 2026. It is now read-only.

Commit 1dbe0fe

Browse files
authored
fix: updating type for test blocking dependency updates (#1282)
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [x] Make sure to open an issue as a [bug/issue](https://togithub.com/googleapis/nodejs-bigquery/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [x] Ensure the tests and linter pass - [x] Code coverage does not decrease (if any source code was changed) - [x] Appropriate docs were updated (if necessary) Fixes #1269 🦕
1 parent 0280dfc commit 1dbe0fe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/rowQueue.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ describe('Queues', () => {
218218
});
219219

220220
it('should cancel any pending insert calls', () => {
221-
const fakeHandle = 1234 as unknown as NodeJS.Timer;
221+
const fakeHandle = 1234 as unknown as NodeJS.Timeout;
222222
const stub = sandbox.stub(global, 'clearTimeout').withArgs(fakeHandle);
223223

224224
queue.pending = fakeHandle;

0 commit comments

Comments
 (0)