From 48496ff82347f605480260d3a6d629adbe588d40 Mon Sep 17 00:00:00 2001 From: Juanfran Date: Tue, 17 May 2016 14:33:43 +0200 Subject: [PATCH] fix seleniumAddress param --- run-e2e.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-e2e.js b/run-e2e.js index 9b7bb856..9a74844f 100644 --- a/run-e2e.js +++ b/run-e2e.js @@ -50,7 +50,7 @@ function launchProtractor(suit) { } if (argv.seleniumAddress) { - protractorParams.push('--seleniumAddress=' + seleniumAddress); + protractorParams.push('--seleniumAddress=' + argv.seleniumAddress); } child_process.spawnSync('protractor', protractorParams, {stdio: "inherit"});