You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I run tests in the playwright I see at the end text like:
"ReportPortal Launch Link: https://<reportportal_url>//launches/all/", but in my project I do I configuration:
Hi @KristineK !
Thanks for pointing our attention to this!
I suppose that the URL that returned from the response is hardcoded on the ReportPortal API side.
I guess we can fix this on the JS client side just by replacing launches with userdebug in case of 'DEBUG' mode, or even better to completely construct the right URL on our side. cc @AliakseiLiasnitski
I'll post ticket in our backlog and will notify you here once it will be done.
After running tests in the 'DEBUG' mode I see that we are getting link to the "launches" instead of debugs (from
https://github.com/reportportal/client-javascript/blob/develop/lib/report-portal-client.js#L249 )
When I run tests in the playwright I see at the end text like:
"ReportPortal Launch Link: https://<reportportal_url>//launches/all/", but in my project I do I configuration:
So I expect the URL to be "https://<reportportal_url>//userdebug/all/".
I do see the correct URL if I go to the report portal UI, but not in the test, which is confusing, since if I open the launch URL it has no logs.
My setup is Playwright + ReportPortal (https://github.com/reportportal/agent-js-playwright + https://github.com/reportportal/client-javascript/ + https://www.npmjs.com/package/@playwright/test)
The text was updated successfully, but these errors were encountered: