File tree Expand file tree Collapse file tree 4 files changed +8
-5
lines changed
Expand file tree Collapse file tree 4 files changed +8
-5
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 11export BROWSER_STACK_ACCESS_KEY=` echo $BROWSER_STACK_ACCESS_KEY | rev`
22
3- node ./lib/browser-stack/start-tunnel .js &
3+ node ./lib/browserstack/start_tunnel .js &
File renamed without changes.
Original file line number Diff line number Diff line change 11#! /bin/bash
22# Has to be run from project root directory.
33
4- # TODO(vojta): normalize paths to lib/$BROWSER_PROVIDER
4+
55if [ " $BROWSER_PROVIDER " == " browserstack" ]; then
66 echo " Using BrowserStack"
7- ./lib/browser-stack/start-tunnel.sh
8- else
7+ elif [ " $BROWSER_PROVIDER " == " saucelabs" ]; then
98 echo " Using SauceLabs"
10- ./lib/sauce/sauce_connect_setup.sh
9+ else
10+ echo " Invalid BROWSER_PROVIDER. Please set env var BROWSER_PROVIDER to 'saucelabs' or 'browserstack'."
11+ exit 1
1112fi
13+
14+ ./lib/${BROWSER_PROVIDER} /start_tunnel.sh
You can’t perform that action at this time.
0 commit comments