Skip to content

Commit 36ba2ca

Browse files
committed
fix: revert appium port
1 parent 7c21f37 commit 36ba2ca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ commands:
366366
367367
# Wait for server to start
368368
for i in $(seq 1 30); do
369-
if curl -s http://localhost:4724/wd/hub/status | grep -q "ready"; then
369+
if curl -s http://localhost:4723/wd/hub/status | grep -q "ready"; then
370370
echo "Appium server is ready"
371371
break
372372
fi

examples/hybrid/appiumTests/setup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export let client: any;
77

88
const config = {
99
hostname: 'localhost',
10-
port: 4724,
10+
port: 4723,
1111
path: '/', // Adjust if necessary
1212
capabilities: {
1313
...capabilities,

0 commit comments

Comments
 (0)