Fix skipped

This commit is contained in:
Tim Jacomb
2020-08-04 14:55:40 +01:00
committed by Fredrik Adelöw
parent 88df61309e
commit affd8f0a2d
@@ -53,7 +53,7 @@ const FailCount = ({ count }: { count: number }): JSX.Element | null => {
const SkippedCount = ({ count }: { count: number }): JSX.Element | null => {
if (count !== 0) {
return <></>;
return <>{count} skipped</>;
}
return null;
};