Archived
1
0

fixup: include description ts-expect-error comment

This commit is contained in:
Joe Previte 2022-12-06 08:55:24 -07:00
parent 73b61ecfb6
commit 8ed7498b3c
No known key found for this signature in database
GPG Key ID: 2C91590C6B742C24

View File

@ -12,7 +12,7 @@ describe("wrapper", () => {
const p = new ChildProcess() const p = new ChildProcess()
// our ChildProcess isn't exported // our ChildProcess isn't exported
// and shouldn't be for a test so surpressing TS error. // and shouldn't be for a test so surpressing TS error.
// @ts-expect-error // @ts-expect-error - see above
expect(isChild(p)).toBe(false) expect(isChild(p)).toBe(false)
}) })
}) })