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
I'm mapping my project folder to a drive in windows, causing the karma configuration file to be located at a root path (Y:\ in my case). The logic of config.basePath seems to be slightly bugged/inconsistent in this case, because basePath contains a trailing / (Y:/) in this case, instead of stripping it like in other cases. So, the htmlPath computation code, in the file.originalPath.replace(basePath + '/', '') piece of code, causes the replacement to contain a double trailing / (Y://), thus failing the substitution, thus messing up the code that follows.
The text was updated successfully, but these errors were encountered:
I'm mapping my project folder to a drive in windows, causing the karma configuration file to be located at a root path (
Y:\
in my case). The logic ofconfig.basePath
seems to be slightly bugged/inconsistent in this case, becausebasePath
contains a trailing/
(Y:/
) in this case, instead of stripping it like in other cases. So, thehtmlPath
computation code, in thefile.originalPath.replace(basePath + '/', '')
piece of code, causes the replacement to contain a double trailing/
(Y://
), thus failing the substitution, thus messing up the code that follows.The text was updated successfully, but these errors were encountered: