I am currently running CircleCI on a ReactJS project and am trying to the save the results of the npm test command using the store_test_results feature. The feature confirms that the test results have been saved but they are not shown. This is the relevant portion of the config code:
`- run: cd v2/fe && npm test && a
store_test_results:
path: test-results.xml`
I have tried changing the path to path: test-results (which I created the directory for) and several other things but it is not working.