pnpm test:quick— Recommended while iterating: skips__tests__/integration/,__tests__/performance/, andpackage-contract.test.ts(the latter runs a fullpnpm buildand tarball checks).pnpm test:run— Full suite with Jest’s default parallel workers (typically under ~1–2 minutes locally; the old--runInBanddefault was often 6+ minutes).pnpm test:ci— Same astest:runbut--runInBandif you need strictly serial execution to debug ordering flakes.pnpm test/pnpm test:coverage— Coverage run for releases.
- Fork the repository
- Create a feature branch (
git checkout -b feature/<YourFeature>) - Commit your changes (
git commit -am 'Add a new feature') - Push to the branch (
git push origin feature/<YourFeature>) - Create a new pull request on the development branch