I would like to output the results of my jest testing to a file format like JUnit without ejecting from react-scripts.
By using the --json
command I can output it to JSON but I was hoping to get a format that Jenkins can process by default.
I cant seem to find if this is supported and I don't want to eject from Create React App, is there another way?
--reporters=jest-junit
worked because this isnt acoverageReporter
thepackage.json
change wont work and thereporters
key isnt valid in Create React App – Elsy