diff --git a/addons/jest/src/components/Panel.tsx b/addons/jest/src/components/Panel.tsx index 7851164ed43..75b914ce1bf 100644 --- a/addons/jest/src/components/Panel.tsx +++ b/addons/jest/src/components/Panel.tsx @@ -206,6 +206,29 @@ const Content = styled(({ tests, className }: ContentProps) => ( )} +
+ + {testsByType.get(StatusTypes.PENDING_TYPE) ? ( + testsByType.get(StatusTypes.PENDING_TYPE).map((res: any) => ( + + + + )) + ) : ( + + This story has no pending tests. + + )} + +
);