From 8ed7498b3c82c265afc0d3eecd4aa52a5899fe88 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Tue, 6 Dec 2022 08:55:24 -0700 Subject: [PATCH] fixup: include description ts-expect-error comment --- test/unit/node/wrapper.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/node/wrapper.test.ts b/test/unit/node/wrapper.test.ts index 7c8a6bf05..e38dffb09 100644 --- a/test/unit/node/wrapper.test.ts +++ b/test/unit/node/wrapper.test.ts @@ -12,7 +12,7 @@ describe("wrapper", () => { const p = new ChildProcess() // our ChildProcess isn't exported // and shouldn't be for a test so surpressing TS error. - // @ts-expect-error + // @ts-expect-error - see above expect(isChild(p)).toBe(false) }) })