mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 18:21:08 +08:00
removed noTests styled component in favor of placeholder component
This commit is contained in:
parent
56b466c469
commit
2251990c84
@ -17,11 +17,6 @@ const Item = styled.li({
|
||||
padding: 0,
|
||||
});
|
||||
|
||||
const NoTests = styled.div({
|
||||
padding: '10px 20px',
|
||||
flex: 1,
|
||||
});
|
||||
|
||||
const ProgressWrapper = styled.div({
|
||||
position: 'relative',
|
||||
height: '10px',
|
||||
@ -95,7 +90,7 @@ const Content = styled(({ tests, className }: ContentProps) => (
|
||||
<div className={className}>
|
||||
{tests.map(({ name, result }) => {
|
||||
if (!result) {
|
||||
return <NoTests key={name}>This story has tests configured, but no file was found</NoTests>;
|
||||
return <Placeholder>This story has tests configured, but no file was found</Placeholder>;
|
||||
}
|
||||
|
||||
const successNumber = result.assertionResults.filter(({ status }) => status === 'passed')
|
||||
|
Loading…
x
Reference in New Issue
Block a user