I can figure out how to use reporters in angular-cli
I updated the Karma configuration file (karma.conf.js) as follows
require('karma-jasmine-html-reporter'),
and
reporters: config.angularCli && config.angularCli.codeCoverage
? ['progress', 'karma-remap-istanbul', 'kjhtml']
: ['progress', 'kjhtml'],
Then run the following command to install the plugin
npm install karma-jasmine-html-reporter
then i run
ng test --code-coverage
He gives me such a report 
source
share