Browse Source

Tests: Fix browser-test build

patch-2
Braydon Fuller 10 years ago
parent
commit
c6a0803df2
  1. 6
      gulpfile.js

6
gulpfile.js

@ -96,11 +96,9 @@ gulp.task('browser', function() {
.pipe(gulp.dest('browser'));
});
gulp.task('browser-test', function() {
shell.task([
gulp.task('browser-test', shell.task([
'find test/ -type f -name "*.js" | xargs browserify -o ./browser/tests.js'
]);
});
]));
gulp.task('browser-all', function(callback) {
runSequence(['browser'], ['browser-test'], callback);

Loading…
Cancel
Save