added placeholder for the jest tab which provides a link to the readme for more info

This commit is contained in:
CodeByAlex 2019-08-01 20:11:24 -04:00
parent 02c594cf28
commit 56b466c469
2 changed files with 15 additions and 3 deletions

View File

@ -1,6 +1,6 @@
import React, { Fragment } from 'react';
import { styled, withTheme } from '@storybook/theming';
import { ScrollArea, TabsState } from '@storybook/components';
import { ScrollArea, TabsState, Link, Placeholder } from '@storybook/components';
import { SizeMe } from 'react-sizeme';
import Result from './Result';
import provideJestResult, { Test } from '../hoc/provideJestResult';
@ -163,7 +163,19 @@ const Panel = ({ tests }: PanelProps) => (
{tests ? (
<ContentWithTheme tests={tests} />
) : (
<NoTests>This story has no tests configured</NoTests>
<Placeholder>
<Fragment>No tests found</Fragment>
<Fragment>
Learn how to{' '}
<Link
href="https://github.com/storybookjs/storybook/tree/master/addons/jest"
target="_blank"
withArrow
>
add your story's Jest test results
</Link>
</Fragment>
</Placeholder>
)}
</ScrollArea>
);

View File

@ -76,7 +76,7 @@ const provideTests = (Component: React.ComponentType<InjectedProps>) =>
const { active } = this.props;
const { tests } = this.state;
return active && tests ? <Component tests={tests} /> : null;
return active ? <Component tests={tests} /> : null;
}
};