Skip to content

Commit

Permalink
added correction as per review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sarathps93 committed Nov 14, 2020
1 parent a700b0e commit 49534d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/jest-jasmine2/src/treeProcessor.ts
Expand Up @@ -68,7 +68,7 @@ export default function treeProcessor(options: Options): void {
return (
node.disabled ||
node.markedPending ||
!!node.children?.every(hasNoEnabledTest)
(node.children?.every(hasNoEnabledTest) ?? false)
);
}

Expand Down

0 comments on commit 49534d8

Please sign in to comment.