mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Previously the unit tests were run with a custom script `scripts/test.js`. This script was a kind of wrapper around Jest, handling just a few options (skipping all the unknown ones) and spawning Jest programmatically. To simplify this process: - I extracted the only non-classic case in its own NPM script: `yarn test-puppeteer` - Just call Jest directly when running `yarn test` so all the options are forwarded properly to Jest. ⚠️ `yarn test --core` doesn't work anymore as `--core` isn't a Jest option, it is now simply `yarn test`. 📝 To run the tests of a single workspace just use `--projects`, for instance: `yarn test --projects examples/angular-cli`