Skip to content

Commit

Permalink
Merge pull request #29514 from storybookjs/shilman/fix-solid-init
Browse files Browse the repository at this point in the history
CLI: Fix Solid init by installing `@storybook/test`
  • Loading branch information
shilman authored Nov 2, 2024
2 parents 5a4322c + a10154e commit d130f0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/lib/create-storybook/src/generators/baseGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ export async function baseGenerator(
].filter(Boolean);

// TODO: migrate template stories in solid and qwik to use @storybook/test
if (['solid', 'qwik'].includes(rendererId)) {
if (['qwik'].includes(rendererId)) {
addonPackages.push('@storybook/testing-library');
} else {
addonPackages.push('@storybook/test');
Expand Down

0 comments on commit d130f0c

Please sign in to comment.