Currently we are running npm run test
which is giving us output in text format. We need it in XML format so that we can provide it to TeamCity. Is there any command or any other way to do so?
Those are Jest tests.
Asked
Active
Viewed 20 times
0

jonrsharpe
- 115,751
- 26
- 228
- 437
-
Either the server needs to return response in xml format or the test needs to convert response to xml. See https://stackoverflow.com/questions/21398279/how-can-i-respond-in-xml-using-expressjs – jdweng Aug 01 '23 at 17:43
-
Did you try looking for an appropriate reporter? – jonrsharpe Aug 01 '23 at 19:02