jeffrifwald / babel-istanbul

Yet another JS code coverage tool that computes statement, line, function and branch coverage with module loader hooks to transparently add coverage when running tests. Supports all JS coverage use cases including unit tests, server side functional tests and browser tests. Built for scale.
Other
144 stars 23 forks source link

Upgrade to Babel 7 #85

Closed hershmire closed 5 years ago

hershmire commented 5 years ago

Are there any plans to upgrade to Babel 7 now that it's officially released?

jeffrifwald commented 5 years ago

This project actually hasn't been maintained in quite awhile. It was created during a time when istanbul itself did not have good support for transpiled code. I believe that istanbul is now fully up to date and should work with babel given some configuration. You'll probably want to install the nyc command line client, which handles a bunch of that stuff for you.

https://istanbul.js.org/

hershmire commented 5 years ago

Ok, thanks. That's what I assumed but wanted to verify.