Skip to content

Commit

Permalink
Do not report SIGNREQUEST as an open handle
Browse files Browse the repository at this point in the history
  • Loading branch information
cristianrgreco committed May 2, 2022
1 parent 1dee273 commit 49f4a55
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/jest-core/src/collectHandles.ts
Expand Up @@ -72,7 +72,8 @@ export default function collectHandles(): HandleCollectionResult {
type === 'PerformanceObserver' ||
type === 'RANDOMBYTESREQUEST' ||
type === 'DNSCHANNEL' ||
type === 'ZLIB'
type === 'ZLIB' ||
type === 'SIGNREQUEST'
) {
return;
}
Expand Down

0 comments on commit 49f4a55

Please sign in to comment.