Tests: Fix browser-test build

This commit is contained in:
Braydon Fuller 2014-11-26 18:13:03 -05:00
parent 6af3559a97
commit c6a0803df2
1 changed files with 2 additions and 4 deletions

View File

@ -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);