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
Create a brand new project, run tests with code coverage:
ng new stock-ng-project
cd stock-ng-project
ng test --watch=false --code-coverage
Open the generated istanbul report:
open coverage/src/app/app.component.ts.html
The log given by the failure
No explicit error.
The report is malformed, including:
highlights that don't correspond to tokens
Random characters (I, E)
Gutter markers that don't correspond to lines with code
Desired functionality
It should be like the version from @angular-devkit/build-angular 0.6.8:
npm install --only=dev @angular-devkit/[email protected]
ng test --watch=false --code-coverage
open coverage/src/app/app.component.ts.html
The report is correctly formatted.
Mention any other details that might be useful
I've tracked this to being introduced by the upgrade of @angular-devkit/build-angular from 0.6.8 to 0.7.0, but that added/updated a lot of webpack and source-map-loader dependencies, and I'm not sure what the root cause is.
The text was updated successfully, but these errors were encountered:
Bug Report or Feature Request (mark with an
x
)Command (mark with an
x
)Versions
macOS High Sierra (10.13.6)
Repro steps
Create a brand new project, run tests with code coverage:
Open the generated istanbul report:
The log given by the failure
No explicit error.
The report is malformed, including:
Desired functionality
It should be like the version from
@angular-devkit/build-angular
0.6.8:The report is correctly formatted.
Mention any other details that might be useful
I've tracked this to being introduced by the upgrade of
@angular-devkit/build-angular
from 0.6.8 to 0.7.0, but that added/updated a lot of webpack and source-map-loader dependencies, and I'm not sure what the root cause is.The text was updated successfully, but these errors were encountered: