ocavue / jest-puppeteer-istanbul

Collect code coverage information from end-to-end jest puppeteer tests

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Usage without babel

nmfzone opened this issue · comments

Hey, sorry for bothering you via this issue.

I just want to know, is it possible to use this package in Angular? since AFAIK angular doesn't use babel. Thanks

This package is based on the babel-plugin-istanbul so currently, it's not possible to use this package without babel.

I haven't used Angular before. Based on what I learn from google, Angular use TypeScript(tsc) and Webpack to build the application. Maybe you can try https://www.npmjs.com/package/coverage-istanbul-loader, which is a Webpack loader and doesn't need babel under the hood.

Ah, thanks for the clarification, since I've spent some hours just to figured out what is happened under the hood. Thanks for pointing me to that package, but it seems I've found the official package that maybe can be used in Angular (https://github.com/istanbuljs/puppeteer-to-istanbul).