mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 18:51:07 +08:00
added placeholder for the jest tab which provides a link to the readme for more info
This commit is contained in:
parent
02c594cf28
commit
56b466c469
@ -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>
|
||||
);
|
||||
|
@ -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;
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user