Express server to serve YUI test coverage files for faster development.
npm install yui-coverageYUI Code Coverage Helper
========================
This little CLI tool will aid YUI developers with their code coverage for the library.
Install
-------
npm -g i https://github.com/davglass/yui-coverage/tarball/master
Usage
-----
cd yui3/src/dd
yui-coverage
Then open a browser to: http://127.0.0.1:3000/
This will load the tests from: src/dd/tests/index.html
On the fly, it will run YUITest's test coverage tool on the files as they are loaded
in the browser. Then when it's complete it will display the Code Coverage results.
Note: It will only run coverage on a module that belongs to the directory
it's currently serving from. In the above example, it will only encode dd modules.
This way you get code coverage for your individual module and not all of the modules in
the system.