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
Recent commit d5dc808 causes karma-junit-reporter to no longer function if an outputFile is not defined in the config, even though outputFile is documented as optional and was previously optional. The error is TypeError: Cannot read property 'charAt' of undefined, and it's caused by calling pathIsAbsolute(outputFile) in writeXmlForBrowser without first checking to make sure outputFile was set.
The text was updated successfully, but these errors were encountered:
Modifies the Junit Reporter so that it doesn't try to combine the output directory path and the output file, if the output file is already an absolute path
Closes#83
Recent commit d5dc808 causes karma-junit-reporter to no longer function if an
outputFile
is not defined in the config, even thoughoutputFile
is documented as optional and was previously optional. The error isTypeError: Cannot read property 'charAt' of undefined
, and it's caused by callingpathIsAbsolute(outputFile)
inwriteXmlForBrowser
without first checking to make sureoutputFile
was set.The text was updated successfully, but these errors were encountered: