Created by: TuckerWhitehouse
Resolves #9019
Steps to verify
- Prior to making this change, add
"jest": { "reporters": [] }topackages/react-scripts/package.json - Run
yarn test- This will fail with a message that indicates thereportersoption is not supported - Apply these changes
- Re-run
yarn test-- This will pass and will also print no test results as we have not specified the default reporter.
This also complements the coverageReporters option: https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/scripts/utils/createJestConfig.js#L79