-
-
Notifications
You must be signed in to change notification settings - Fork 9.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Addon Test: Only register testing module in Vite projects #29472
Merged
kasperpeulen
merged 1 commit into
next
from
yann/disable-testing-module-on-non-vite-projects
Oct 29, 2024
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,104 +80,106 @@ const RelativeTime = ({ timestamp, testCount }: { timestamp: Date; testCount: nu | |
}; | ||
|
||
addons.register(ADDON_ID, (api) => { | ||
const openAddonPanel = () => { | ||
api.setSelectedPanel(PANEL_ID); | ||
api.togglePanel(true); | ||
}; | ||
|
||
addons.add(TEST_PROVIDER_ID, { | ||
type: Addon_TypesEnum.experimental_TEST_PROVIDER, | ||
runnable: true, | ||
watchable: true, | ||
|
||
name: 'Component tests', | ||
title: ({ crashed, failed }) => | ||
crashed || failed ? 'Component tests failed' : 'Component tests', | ||
description: ({ failed, running, watching, progress, crashed, details }) => { | ||
const [isModalOpen, setIsModalOpen] = useState(false); | ||
|
||
const errorMessage = details?.error?.message; | ||
|
||
let message: string | React.ReactNode = 'Not run'; | ||
|
||
if (running) { | ||
message = progress | ||
? `Testing... ${progress.numPassedTests}/${progress.numTotalTests}` | ||
: 'Starting...'; | ||
} else if (failed && !errorMessage) { | ||
message = 'Component tests failed'; | ||
} else if (crashed || (failed && errorMessage)) { | ||
message = ( | ||
if (globalThis.STORYBOOK_BUILDER?.includes('vite')) { | ||
const openAddonPanel = () => { | ||
api.setSelectedPanel(PANEL_ID); | ||
api.togglePanel(true); | ||
}; | ||
|
||
addons.add(TEST_PROVIDER_ID, { | ||
type: Addon_TypesEnum.experimental_TEST_PROVIDER, | ||
runnable: true, | ||
watchable: true, | ||
|
||
name: 'Component tests', | ||
title: ({ crashed, failed }) => | ||
crashed || failed ? 'Component tests failed' : 'Component tests', | ||
description: ({ failed, running, watching, progress, crashed, details }) => { | ||
const [isModalOpen, setIsModalOpen] = useState(false); | ||
|
||
const errorMessage = details?.error?.message; | ||
|
||
let message: string | React.ReactNode = 'Not run'; | ||
|
||
if (running) { | ||
message = progress | ||
? `Testing... ${progress.numPassedTests}/${progress.numTotalTests}` | ||
: 'Starting...'; | ||
} else if (failed && !errorMessage) { | ||
message = 'Component tests failed'; | ||
} else if (crashed || (failed && errorMessage)) { | ||
message = ( | ||
<> | ||
<LinkComponent | ||
isButton | ||
onClick={() => { | ||
setIsModalOpen(true); | ||
}} | ||
> | ||
{details?.error?.name || 'View full error'} | ||
</LinkComponent> | ||
</> | ||
); | ||
} else if (progress?.finishedAt) { | ||
message = ( | ||
<RelativeTime | ||
timestamp={new Date(progress.finishedAt)} | ||
testCount={progress.numTotalTests} | ||
/> | ||
); | ||
} else if (watching) { | ||
message = 'Watching for file changes'; | ||
} | ||
|
||
return ( | ||
<> | ||
<LinkComponent | ||
isButton | ||
onClick={() => { | ||
setIsModalOpen(true); | ||
{message} | ||
<GlobalErrorModal | ||
error={errorMessage} | ||
open={isModalOpen} | ||
onClose={() => { | ||
setIsModalOpen(false); | ||
}} | ||
> | ||
{details?.error?.name || 'View full error'} | ||
</LinkComponent> | ||
onRerun={() => { | ||
setIsModalOpen(false); | ||
api | ||
.getChannel() | ||
.emit(TESTING_MODULE_RUN_ALL_REQUEST, { providerId: TEST_PROVIDER_ID }); | ||
}} | ||
/> | ||
</> | ||
); | ||
} else if (progress?.finishedAt) { | ||
message = ( | ||
<RelativeTime | ||
timestamp={new Date(progress.finishedAt)} | ||
testCount={progress.numTotalTests} | ||
/> | ||
); | ||
} else if (watching) { | ||
message = 'Watching for file changes'; | ||
} | ||
|
||
return ( | ||
<> | ||
{message} | ||
<GlobalErrorModal | ||
error={errorMessage} | ||
open={isModalOpen} | ||
onClose={() => { | ||
setIsModalOpen(false); | ||
}} | ||
onRerun={() => { | ||
setIsModalOpen(false); | ||
api | ||
.getChannel() | ||
.emit(TESTING_MODULE_RUN_ALL_REQUEST, { providerId: TEST_PROVIDER_ID }); | ||
}} | ||
/> | ||
</> | ||
); | ||
}, | ||
|
||
mapStatusUpdate: (state) => | ||
Object.fromEntries( | ||
(state.details.testResults || []).flatMap((testResult) => | ||
testResult.results | ||
.map(({ storyId, status, testRunId, ...rest }) => { | ||
if (storyId) { | ||
const statusObject: API_StatusObject = { | ||
title: 'Component tests', | ||
status: statusMap[status], | ||
description: | ||
'failureMessages' in rest && rest.failureMessages?.length | ||
? rest.failureMessages.join('\n') | ||
: '', | ||
data: { | ||
testRunId, | ||
}, | ||
onClick: openAddonPanel, | ||
}; | ||
return [storyId, statusObject]; | ||
} | ||
}) | ||
.filter(Boolean) | ||
) | ||
), | ||
} as Addon_TestProviderType<{ | ||
testResults: TestResult[]; | ||
error?: { message: string; name: string }; | ||
}>); | ||
}, | ||
|
||
mapStatusUpdate: (state) => | ||
Object.fromEntries( | ||
(state.details.testResults || []).flatMap((testResult) => | ||
testResult.results | ||
.map(({ storyId, status, testRunId, ...rest }) => { | ||
if (storyId) { | ||
const statusObject: API_StatusObject = { | ||
title: 'Component tests', | ||
status: statusMap[status], | ||
description: | ||
'failureMessages' in rest && rest.failureMessages?.length | ||
? rest.failureMessages.join('\n') | ||
: '', | ||
data: { | ||
testRunId, | ||
}, | ||
onClick: openAddonPanel, | ||
}; | ||
return [storyId, statusObject]; | ||
} | ||
}) | ||
.filter(Boolean) | ||
) | ||
), | ||
} as Addon_TestProviderType<{ | ||
testResults: TestResult[]; | ||
error?: { message: string; name: string }; | ||
}>); | ||
} | ||
|
||
addons.add(PANEL_ID, { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. logic: Panel is still registered even when test provider is not available, which could lead to confusing empty UI state |
||
type: types.PANEL, | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
style: Consider using a more robust check like
STORYBOOK_BUILDER === '@storybook/builder-vite'
instead of string includes