Replies: 1 comment
-
I should mention that I am using the Junit reporter as described by Microsoft (https://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/test/publish-test-results?view=azure-devops&tabs=trx%2Cyaml) and I set it up using -
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Cypress Version 8.3
C/I: Azure Devops
I have been previously using the onTask method for logging important information to the console:
but we just switch over to Microsoft Azure Devops and they have an internal test reporting system that I am trying to utilize. It looks like this for failed tests -
Where all the testing information is filled out through the Cypress XML that was auto generated through
npm run cy:run
.The problem now is that the console onTask messages are berried deep in the pipeline process and are really no longer visible to the testers or devs without a bunch of digging.
Is it possible to add output/logging to the autogenerated cypress xml so it would print in the stack trace on Microsoft Azure?
something like -
That way I could post important test information to right hand pane of Azure Devops, when anyone clicked into an individual test result (and not just for failed tests).
Thank you guys
Beta Was this translation helpful? Give feedback.
All reactions