From a5df5a6ee9a30a6eab25d6302b4cd98f21e05421 Mon Sep 17 00:00:00 2001 From: Gregg Van Hove Date: Mon, 25 Mar 2019 18:12:15 -0700 Subject: [PATCH] Use the correct env var from travis for tunnels --- ci.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci.js b/ci.js index ba403668..7e9aed2a 100644 --- a/ci.js +++ b/ci.js @@ -62,7 +62,7 @@ function buildWebdriver() { [Capability.VERSION]: process.env['SAUCE_BROWSER_VERSION'], build: `Core ${process.env['TRAVIS_BUILD_NUMBER'] || 'Ran locally'}`, tags: ['Jasmine-Core'], - "tunnel-identifier": process.env['TRAVIS_JOB_NUMBER'] ? process.env['TRAVIS_BUILD_NUMBER'].toString() : null + "tunnel-identifier": process.env['TRAVIS_JOB_NUMBER'] ? process.env['TRAVIS_JOB_NUMBER'].toString() : null }) .usingServer(`http://${username}:${accessKey}@localhost:4445/wd/hub`) .build();