gulp.task('test', ['clean:coverage', 'instrument'], function() {
  return gulp.src(['test/node/*.js'])
    .pipe(mocha())
    .pipe(istanbul.writeReports());
});