Is there a way with Chutzpah to specify multiple test specification file sources when running the JS unit tests via Team Build?
I understand that I can add multiple test sources in the build definition. The major downside to this is it generates a code coverage file for each source, overwriting the code coverage file for each configured test source. I would like to be able to produce one code coverage report for all tests in the project. I should be able to accomplish this by reorganizing the source for the project or changing the file pattern we use to identify tests (*_test.js) so it is unique, but I was hoping to avoid these if possible.
Thanks, Shane