marcules / karma-remap-istanbul

Call remap-istanbul as a karma reporter, enabling remapped reports on watch
MIT License
37 stars 32 forks source link

Cannot read properties of null (reading 'split') #49

Open arobinson opened 1 year ago

arobinson commented 1 year ago

My lcov.info remapping worked just fine, but when I tried to include an HTML report, I got this error (paths shortened for readability):

ERROR [reporter.remap-istanbul]: TypeError: Cannot read properties of null (reading 'split')
    at HtmlReport.writeDetailPage (.../istanbul@0.4.5/node_modules/istanbul/lib/report/html.js:412:31)
    at .../istanbul@0.4.5/node_modules/istanbul/lib/report/html.js:489:26

Not sure if the error is in istanbul or in this library due to some configuration with istanbul though

arobinson commented 1 year ago

Error was in this line:

code = sourceText.split(/(?:\r?\n)|\r/),