Test Replay does not display all the information from cypress-plugin-api #27796
Replies: 3 comments 1 reply
-
I can confirm that cy.request command has no any output in the network tab (which is okay) or in the console tab when I click on the command (which is not okay). |
Beta Was this translation helpful? Give feedback.
-
We get no console output when clicking on the step that's failing:
We are still blind to the root cause for these API tests, unless we repeat it locally for sure. |
Beta Was this translation helpful? Give feedback.
-
We have plans to better support |
Beta Was this translation helpful? Give feedback.
-
After successfully upgrading to Cypress 13, we ran our API tests built using
cypress-plugin-api
to check if Test Replay was suitable for this kind of tests — actual requests are made in Node, not in the browser.As far as I can extract from the output, only the number of requests, the response status code and duration are successfully displayed on screen. The debugging information of the requests — URL, headers, body from both the request and the response — are blank. The
cypress-plugin-api
UI is shown, though.Is Test Replay expected to successfully display all the information from
cy.request
and thuscy.api
? Iscy.request
outside its scope? Or is this an integration issue between the new Test Replay and the plugin itself?Beta Was this translation helpful? Give feedback.
All reactions