mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-09 00:19:13 +08:00
- It previously mixed three package manager snippets with a common one, which doesn't work correctly
12 lines
396 B
Markdown
12 lines
396 B
Markdown
```shell renderer="common" language="js" packageManager="npm"
|
|
npm run test-storybook -- --url https://the-storybook-url-here.com
|
|
```
|
|
|
|
```shell renderer="common" language="js" packageManager="pnpm"
|
|
pnpm run test-storybook --url https://the-storybook-url-here.com
|
|
```
|
|
|
|
```shell renderer="common" language="js" packageManager="yarn"
|
|
yarn test-storybook --url https://the-storybook-url-here.com
|
|
```
|