mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
Merge branch 'next' into open-component-tests-panel-on-status-click
This commit is contained in:
commit
fd3abe5d2d
@ -157,7 +157,7 @@ addons.register(ADDON_ID, (api) => {
|
||||
.map(({ storyId, status, testRunId, ...rest }) => {
|
||||
if (storyId) {
|
||||
const statusObject: API_StatusObject = {
|
||||
title: 'Vitest',
|
||||
title: 'Component tests',
|
||||
status: statusMap[status],
|
||||
description:
|
||||
'failureMessages' in rest && rest.failureMessages?.length
|
||||
|
@ -7,6 +7,7 @@ import {
|
||||
CollapseIcon as CollapseIconSvg,
|
||||
ExpandAltIcon,
|
||||
StatusFailIcon,
|
||||
StatusPassIcon,
|
||||
StatusWarnIcon,
|
||||
SyncIcon,
|
||||
} from '@storybook/icons';
|
||||
@ -224,7 +225,7 @@ const Node = React.memo<NodeProps>(function Node({
|
||||
description: value.description,
|
||||
'aria-label': `Test status for ${value.title}: ${value.status}`,
|
||||
icon: {
|
||||
success: null, // We don't show a checkmark, to avoid clutter
|
||||
success: <StatusPassIcon color={theme.color.positive} />,
|
||||
error: <StatusFailIcon color={theme.color.negative} />,
|
||||
warn: <StatusWarnIcon color={theme.color.warning} />,
|
||||
pending: <SyncIcon size={12} color={theme.color.defaultText} />,
|
||||
|
Loading…
x
Reference in New Issue
Block a user