ERROR:
TypeError: Cannot read property 'text' of undefined
at {ApplicationPath}\node_modules\istanbul\lib\report\html.js:210:46
FIX:
Add below condition to existing if condition at the lines of 205, 236, 283 (node_modules\istanbul\lib\report\html.js)
&& structuredText[startLine] && structuredText[startLine].text
Line 205:
if (type === 'no' && structuredText[startLine] && structuredText[startLine].text) {
Line 236:
if (type === 'no' && structuredText[startLine] && structuredText[startLine].text) {
Line 283:
if (count === 0 && structuredText[startLine] && structuredText[startLine].text) {
No comments:
Post a Comment