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 Testomatio Reporter v2.8.4 completes a test run with API key authentication, it generates a report URL in the terminal output using an outdated path format (/runs/{runId}/report). Accessing this URL returns a 404 error because the frontend expects the new format (/report/{runId}).
To Reproduce
Run automated tests using the command (e.g., TESTOMATIO_URL={TESTOMATIO_URL} TESTOMATIO={TESTOMATIO_API_ KEY} npx codeceptjs run
Wait for tests to complete and reporter to generate final output
Copy the report URL from terminal output — format will be: https://beta.testomat.io/projects/{projectName}/runs/{runId}/report
Paste URL into browser address bar
Observe 404 error page
Expected behavior
The generated report URL should use the current path format: /projects/{projectName}/report/{runId}
Clicking the generated URL should load the test report successfully without 404 error.
Describe the bug
When Testomatio Reporter v2.8.4 completes a test run with API key authentication, it generates a report URL in the terminal output using an outdated path format (
/runs/{runId}/report). Accessing this URL returns a 404 error because the frontend expects the new format (/report/{runId}).To Reproduce
TESTOMATIO_URL={TESTOMATIO_URL} TESTOMATIO={TESTOMATIO_API_ KEY} npx codeceptjs runhttps://beta.testomat.io/projects/{projectName}/runs/{runId}/reportExpected behavior
/projects/{projectName}/report/{runId}Screenshots
CleanShot.2026-05-26.at.09.10.50.mp4