Skip to content

Commit

Permalink
Merge pull request #180 from jakemmarsh/fix-webdriver-update
Browse files Browse the repository at this point in the history
Fix webdriver update
  • Loading branch information
jakemmarsh committed Mar 15, 2016
2 parents a513600 + 3d9f700 commit dbc2fb4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 3 additions & 1 deletion gulp/tasks/protractor.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ import testServer from '../util/testServer';
import gulp from 'gulp';
import {
protractor,
webdriver_update, // eslint-disable-line camelcase
webdriver
} from 'gulp-protractor';

gulp.task('webdriverUpdate', webdriver_update);
gulp.task('webdriver', webdriver);

gulp.task('protractor', ['prod', 'webdriver'], function(cb) {
gulp.task('protractor', ['prod', 'webdriverUpdate', 'webdriver'], function(cb) {

const testFiles = gulp.src('test/e2e/**/*.js');

Expand Down
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angularjs-gulp-browserify-boilerplate",
"version": "1.5.6",
"version": "1.5.7",
"author": "Jake Marsh <[email protected]>",
"description": "Boilerplate using AngularJS, SASS, Gulp, and Browserify while also utilizing best practices.",
"repository": {
Expand Down Expand Up @@ -77,9 +77,7 @@
"watchify": "^3.7.0"
},
"scripts": {
"test": "./node_modules/.bin/gulp test",
"webdriver-update": "./node_modules/gulp-protractor/node_modules/protractor/bin/webdriver-manager update",
"postinstall": "npm run webdriver-update"
"test": "./node_modules/.bin/gulp test"
},
"license": "MIT"
}

0 comments on commit dbc2fb4

Please sign in to comment.