storybook/docs/_snippets/test-runner-execute-with-url.md
Kyle Gach c94e995d2d Split problematic snippet into two
- It previously mixed three package manager snippets with a common one, which doesn't work correctly
2024-06-21 09:28:21 -06:00

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
```