Skip to content

Commit

Permalink
Re-named the gulp task dealing with vendor scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
dflynn15 committed Oct 21, 2014
1 parent 30ded6a commit bdd9c36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ gulp.task('test-path', function() {
});

//Use require in an integration test
gulp.task('test-require', function() {
gulp.task('test-vendor', function() {
return gulp.src('specs/integration/require-integration.js')
.pipe(jasmine({
integration: true,
Expand All @@ -49,7 +49,7 @@ gulp.task('test-require', function() {

//Watch task
gulp.task('dev', function() {
gulp.watch('specs/unit/*.js', ['test-require']);
gulp.watch('specs/unit/*.js', ['test-vendor']);
});

gulp.task('multiple', ['default', 'test-integration']);
Expand Down

0 comments on commit bdd9c36

Please sign in to comment.