mocha.parallel
Run async mocha specs in parallel.

Installation
npm install --save mocha.parallel
Overview
Examples
Rather than taking 1.5s, the specs below run in parallel, completing in just
over 500ms.
var parallel = require('../index.js');
var Promise = require('bluebird');
parallel('delays', function() {
it('test1', function(done) {
setTimeout(done, 500);
});
it('test2', function(done) {
setTimeout(done, 500);
});
it('test3', function() {
return Promise.delay(500);
});
});
delays
✓ test1 (500ms)
✓ test2
✓ test3
3 passing (512ms)
Caveats
Debugging parallel execution can be more difficult as exceptions may be thrown
from any of the running specs.