Is there a standard framework for unit testing on IOJS? I'm trying to test server-side code that uses ES6 features. Currently I'm trying to use Mocha, which unfortunately is hard-coded to utilize node as it's platform. This wouldn't be so much of a problem - I could just use a transpiler - however I am also using the koa library, which makes extensive use of ES6 generators.
Unfortunately, mocha compilers do not transpile node_modules, which means I am unable to test any files that utilize the koa module.
It also seems fairly counterproductive for me to write my code for use on iojs but be forced to use node to test it.
I did at the io.js tag but this appears to be synonymized with the node one as I am unable to actually select it.
Ideas?