# Run Jest Recursively Without Collapse Output ## Metadata **Status**:: #x **Zettel**:: #zettel/fleeting **Created**:: [[2025-06-23]] ## Synopsis Add test script in sub-projects: ``` "scripts": { "test": "jest" } ``` Run with `pnpm`: ``` pnpm run --stream -r test ``` Alternatively: ``` pnpm run --reporter append-only -r test ``` Or: ``` pnpm exec -r jest ```