Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
fb8f825
Add ref query param to getDocsUrl and change asset param to take a st…
ghengeveld Nov 21, 2025
c95eee9
Update Guide page links to have ref=guide
ghengeveld Nov 21, 2025
db53296
Take feature configuration into consideration for making items availa…
ghengeveld Nov 21, 2025
a16f613
Addon-Vitest: Ensure Storybook starts correctly across platforms by u…
valentinpalkovic Nov 21, 2025
17d46c9
telemetry(build): send build telemetry only after successful build an…
valentinpalkovic Nov 21, 2025
f97b6fc
CLI: Fix access to getOptionValue in postAction hook
valentinpalkovic Nov 21, 2025
61990b0
Hide menu after opening guide
ghengeveld Nov 21, 2025
10563b0
Merge pull request #33116 from storybookjs/valentin/fix-custom-storyb…
valentinpalkovic Nov 21, 2025
fefd0b7
CLI: Update compatibility guidance link in summary message
valentinpalkovic Nov 21, 2025
6892cab
Merge pull request #33115 from storybookjs/valentin/fix-telemetry-eve…
valentinpalkovic Nov 21, 2025
a0e40e2
Merge pull request #33119 from storybookjs/valentin/fix-getOptionValu…
valentinpalkovic Nov 21, 2025
72504c9
Wait for checklist widget to load
ghengeveld Nov 21, 2025
cd9c493
Fix narrow story
ghengeveld Nov 21, 2025
b3d2ce1
CLI: Standardize debug log messages across the application
valentinpalkovic Nov 21, 2025
12f8d5a
Wait for expand animation
ghengeveld Nov 21, 2025
d74f04b
Fix bullet contrast
ghengeveld Nov 21, 2025
e07f0bc
Fix checklist contrast on dark mode
ghengeveld Nov 21, 2025
3217b9a
Merge pull request #33121 from storybookjs/wait-for-checklist-widget
ghengeveld Nov 21, 2025
456e21c
Merge pull request #33113 from storybookjs/checklist-consider-features
ghengeveld Nov 21, 2025
edf82eb
Merge pull request #33123 from storybookjs/valentin/fine-tune-debug-log
valentinpalkovic Nov 21, 2025
c04d322
Merge pull request #33111 from storybookjs/docs-url-assets-ref
ghengeveld Nov 22, 2025
d5bb853
Merge pull request #33117 from storybookjs/valentin/update-compat-link
valentinpalkovic Nov 23, 2025
fe5c011
Merge branch 'next-release' into next
storybook-bot Nov 23, 2025
40742c1
Write changelog for 10.1.0-beta.1 [skip ci]
storybook-bot Nov 23, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Addon-Vitest: Ensure Storybook starts correctly across platforms by u…
…sing shell in spawn
  • Loading branch information
valentinpalkovic committed Nov 21, 2025
commit a16f6136045c9c7cb6f3c4ae4548f237e1679dfd
5 changes: 4 additions & 1 deletion code/addons/vitest/src/vitest-plugin/global-setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ const startStorybookIfNotRunning = async () => {

try {
// We don't await the process because we don't want Vitest to hang while Storybook is starting
storybookProcess = spawn(storybookScript, [], {
// Use shell so commands like `yarn storybook --no-open` or `npm run storybook -- --no-open`
// are interpreted correctly across platforms.
storybookProcess = spawn(storybookScript, {
shell: true,
stdio: process.env.DEBUG === 'storybook' ? 'pipe' : 'ignore',
cwd: process.cwd(),
});
Expand Down