Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
add gulp test:e2e:start-local
Browse files Browse the repository at this point in the history
  • Loading branch information
hmdhk committed Jul 5, 2016
1 parent e3dfa7f commit e839e39
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -277,8 +277,14 @@ gulp.task('test:e2e:selenium', function (done) {
})
})

gulp.task('test:e2e:start-local', function (done) {
runSequence('build', 'build:release', 'test:e2e:serve', 'test:e2e:selenium', function () {
console.log('All tasks completed.')
});
})

// Run all required tasks to perform remote end-to-end testing
gulp.task('test:e2e:start', function (done) {
gulp.task('test:e2e:start-sauce', function (done) {
runSequence('build', 'test:e2e:serve', 'test:e2e:launchsauceconnect', 'test:e2e:sauceconnect', function () {
console.log('All tasks completed.')
done()
Expand Down

0 comments on commit e839e39

Please sign in to comment.