Merging the results of different machines

Questions, problems, suggestions, bug reports, and so on.
Post Reply
Arun

Merging the results of different machines

Post by Arun »

I tried using this tool for my web application. Seems to be working pretty fine.
But what if 2 different people are working on the same application on different machines.

Is it possible to get the merged results out of those 2 (or may be more) machines in a single report?
Ed
Posts: 120
Joined: 2008-10-11 6:52 pm

Re: Merging the results of different machines

Post by Ed »

The jscoverage-server program can merge results from different test runs:
  • Run

    Code: Select all

    jscoverage-server --report-dir=DIR
    on a server machine. (This could be one of the two test machines, or it could be a third machine - the location of the server does not matter.)
  • Access the server using test machine 1. Run the tests. Store the report.
  • Access the server using test machine 2. Run the tests. Store the report.
The stored report in DIR would have the merged results from the two machines.
Post Reply