Fixes a code typo in gulpfile

gulpfile had a typo where selenium driver option was misspelled
as `dirvers` instead of `drivers`

Change-Id: Ice1a7e6ad4634f134002150139d00f04f4f317e8
This commit is contained in:
Dennis Mathew Philip 2017-03-15 10:22:00 -07:00
parent 5eadafc910
commit 2ebcc34a40
1 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ gulp.task('selenium:fetch', function(cb) {
var selenium = require('selenium-standalone');
selenium.install({
version: process.env.SELENIUM_VERSION || SELENIUM_VERSION,
dirvers: SELENIUM_DRIVERS
drivers: SELENIUM_DRIVERS
}, cb);
});
@ -72,7 +72,7 @@ gulp.task('selenium', ['selenium:fetch'], function(cb) {
selenium.start(
{
version: process.env.SELENIUM_VERSION || SELENIUM_VERSION,
dirvers: SELENIUM_DRIVERS,
drivers: SELENIUM_DRIVERS,
seleniumArgs: ['--port', port],
spawnOptions: {stdio: 'pipe'}
},