Skip to content

Commit

Permalink
remove one more internal thing
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Feb 20, 2020
1 parent 3b705ee commit 6e27752
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/jest-core/src/collectHandles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@ function isSafeJestInternal(stack: string) {
.split('\n')
.some(
line =>
line.includes('at Status._debouncedEmit') &&
line.includes('build/Status.js'),
line.includes('build/Status.js') &&
(line.includes('at Status._debouncedEmit') ||
line.includes('at Status.runStarted')),
);
}

Expand Down

0 comments on commit 6e27752

Please sign in to comment.