From c629aecf99cfbe25fa448f85cc931ca62d709c43 Mon Sep 17 00:00:00 2001 From: Ben Grant Date: Tue, 20 May 2025 16:56:47 -0700 Subject: [PATCH] ts-expect-error instead of ts-ignore --- test/js/node/worker_threads/worker_threads.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/js/node/worker_threads/worker_threads.test.ts b/test/js/node/worker_threads/worker_threads.test.ts index 06ab212862..9c4646362d 100644 --- a/test/js/node/worker_threads/worker_threads.test.ts +++ b/test/js/node/worker_threads/worker_threads.test.ts @@ -27,7 +27,7 @@ function setEnvironmentDataInScope(key: string, data: wt.Serializable): Disposab return { [Symbol.dispose]() { // delete the key. ignored because @types/node does not think you can pass undefined to setEnvironmentData - // @ts-ignore + // @ts-expect-error setEnvironmentData(key); }, };