I took an existing test:
it('should have a controller instance', co.wrap(function *() {
    stateController.should.be.a('object');
}));
and tried to use arrow syntax on the generator function and it the runtime complains
it('should have a controller instance', co.wrap(*() => {
    stateController.should.be.a('object');
}));

 
    