core
core copied to clipboard
It's difficult to run tests with coverage reports for all packages locally and review the results
To run tests for all packages and see coverage reports, you can say:
yarn test:verbose
But this essentially runs a separate instance of jest per package. If any package fails — meaning that if any test for any package fails, or the coverage check fails — then you must scroll up to find which package failed.
It would be nice to be able to run tests for all packages still in parallel, but then combine results together and provide some kind of summary at the end. Perhaps this is something that can help: https://stackoverflow.com/a/62603091/260771