Skip to content

Commit

Permalink
Merge pull request #29632 from storybookjs/shilman/fix-qwik-init
Browse files Browse the repository at this point in the history
CLI: Fix qwik init
  • Loading branch information
shilman authored Nov 17, 2024
2 parents 34df328 + 85d1d2a commit 6f0f798
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions code/lib/create-storybook/src/generators/baseGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,12 +244,7 @@ export async function baseGenerator(
...extraAddonsToInstall,
].filter(Boolean);

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

if (hasInteractiveStories(rendererId)) {
addons.push('@storybook/addon-interactions');
Expand Down

0 comments on commit 6f0f798

Please sign in to comment.