Skip to content

Commit c592051

Browse files
devversionmmalerba
authored andcommitted
chore: make tunnel filenames consistent (#2072)
* Currently the tunnel `setup/wait/stop` files always have different names like `sauce_connect_block` or just `waitfor_tunnel`.
1 parent b9c3304 commit c592051

File tree

9 files changed

+7
-7
lines changed

9 files changed

+7
-7
lines changed

scripts/ci/sources/tunnel.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
start_tunnel() {
55
case "$MODE" in
66
e2e*|saucelabs*)
7-
./scripts/sauce/sauce_connect_setup.sh
7+
./scripts/saucelabs/start-tunnel.sh
88
;;
99
browserstack*)
10-
./scripts/browserstack/start_tunnel.sh
10+
./scripts/browserstack/start-tunnel.sh
1111
;;
1212
*)
1313
;;
@@ -17,10 +17,10 @@ start_tunnel() {
1717
wait_for_tunnel() {
1818
case "$MODE" in
1919
e2e*|saucelabs*)
20-
./scripts/sauce/sauce_connect_block.sh
20+
./scripts/saucelabs/wait-tunnel.sh
2121
;;
2222
browserstack*)
23-
./scripts/browserstack/waitfor_tunnel.sh
23+
./scripts/browserstack/wait-tunnel.sh
2424
;;
2525
*)
2626
;;
@@ -31,10 +31,10 @@ wait_for_tunnel() {
3131
teardown_tunnel() {
3232
case "$MODE" in
3333
e2e*|saucelabs*)
34-
./scripts/sauce/sauce_connect_teardown.sh
34+
./scripts/saucelabs/stop-tunnel.sh
3535
;;
3636
browserstack*)
37-
./scripts/browserstack/teardown_tunnel.sh
37+
./scripts/browserstack/stop-tunnel.sh
3838
;;
3939
*)
4040
;;
File renamed without changes.

test/protractor.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const config = {
2121
};
2222

2323
if (process.env['TRAVIS']) {
24-
const key = require('../scripts/sauce/sauce_config');
24+
const key = require('../scripts/saucelabs/sauce_config');
2525
config.sauceUser = process.env['SAUCE_USERNAME'];
2626
config.sauceKey = key;
2727
config.capabilities = {

0 commit comments

Comments
 (0)