I m full of questions to…

less than 1 minute read

I’m full of questions today: Is there a way to run all the tests of a workspace in one go? nx test runs only the main app’s tests.

Responses:

You can use the run-many command:

yarn nx run-many --target test --all

Amazing! Thanks!

Or you can run nx test my-app --with-deps to run tests for my-app and all its dependencies

Updated: