From db2ae608aafd70efd54bddfa44cac64ef49497d7 Mon Sep 17 00:00:00 2001 From: CodeByAlex Date: Sat, 17 Aug 2019 11:29:35 -0400 Subject: [PATCH] Fixed null check condition --- addons/jest/src/components/Panel.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/jest/src/components/Panel.tsx b/addons/jest/src/components/Panel.tsx index 08f1a2e5061..e4f1825c4f6 100644 --- a/addons/jest/src/components/Panel.tsx +++ b/addons/jest/src/components/Panel.tsx @@ -126,7 +126,7 @@ const Content = styled(({ tests, className }: ContentProps) => ( const entries: any = testsByType.entries(); const sortedTestsByCount = [...entries].sort((a, b) => a[1].length - b[1].length); - if (!testsByType && !entries && sortedTestsByCount && result.assertionResults) { + if (!testsByType && !entries && !sortedTestsByCount && !result.assertionResults) { return null; }