this fix will work for running individual jest unit tests as well has running the script included in the package.json file
Context / Background
the earlier fix merged worked for running the jest command collectively for all unit tests but not while running the same individually for a single unit test
this fix ensures that the verbose flag is uniformly disabled across individual as well as script runs
What change is being introduced by this PR?
set --verbose=false in the package.json file
this will make consoles added in unit tests for jest to appear while running single or collective script for unit tests covered with jest
How will this be tested?
tested locally, will reconfirm with repo owner whether this is the final expected behavior once PR gets merged
Related issue
Closes #886
package.json
fileContext / Background
What change is being introduced by this PR?
--verbose=false
in thepackage.json
fileHow will this be tested?