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
The _mkFullUrl() function calls Node.js path module. But the module is intended to deal with filesystem paths rather URLs. It could return unexpected results on *nix systems too.
Perhaps url-join package or something like that could be used to concatenate URLs correctly.
Output of
gemini --version:5.6.2
I've noted that
html-reporterplugin produces data.json which contains invalid value in metaInfo.url property on Windows:Expected:
The plugin uses value from suite.fullUrl to put in the report. Root cause of the issue is in
gemini/lib/runner/browser-runner/index.js
Lines 47 to 52 in 7c709d7
The
_mkFullUrl()function calls Node.jspathmodule. But the module is intended to deal with filesystem paths rather URLs. It could return unexpected results on *nix systems too.Perhaps
url-joinpackage or something like that could be used to concatenate URLs correctly.