gotwarlost / 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
8.7k stars 786 forks source link

merging coverage files #636

Closed fpereira1 closed 8 years ago

fpereira1 commented 8 years ago

I have a situation where all my tests run in parallel and it creates the coverage report.

I was able to create a separate coverage folder for each test with the --dir option in the command line, which is great.

Now that I have all of these folders with coverage details, is it possible to merge all of these files into one?

fpereira1 commented 8 years ago

I've discovered that istanbul report does the merging of the files by default, which is GREAT! 👍