Запуск тестов NestJS через Jest

testing

run-test is a Claude Code skill that runs unit and E2E tests for a NestJS application using Jest, supporting full test suite execution, single file by path, or filtered runs via test name patterns. Commands include the standard `pnpm test`, watch mode via `pnpm -C apps/core run test:watch`, `--testNamePattern` filtering, and options for adjusting timeout or Node.js heap size when dealing with memory-intensive scenarios. Tests live under `apps/core/test/` and split into `.spec.ts` unit tests and `.e2e-spec.ts` end-to-end tests covering modules like post and user, as well as processors, transformers, and utilities. The skill runs with `disable-model-invocation: true`, executing bash commands directly through `Bash(pnpm test*)` and `Read/Glob` tools — ideal for developers who want to validate a specific controller or service without leaving Claude Code.