Fixes a code typo in gulpfile
gulpfile had a typo where selenium driver option was misspelled as `dirvers` instead of `drivers` Closes-Bug: #1673502 Change-Id: Ice1a7e6ad4634f134002150139d00f04f4f317e8
This commit is contained in:
parent
c0c37ba4da
commit
2b4e69740c
@ -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'}
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user