Skip to content

Commit afc3b0b

Browse files
committed
AUT-103: fixed RunOpenFin.sh for Runtime 10.x
1 parent c599879 commit afc3b0b

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

RunOpenFin.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,8 @@ do
1818
fi
1919
done
2020

21-
openfin -l -c $CONFIG -p $DEVTOOLS_PORT
21+
runtimeArgs="--remote-debugging-port=$DEVTOOLS_PORT"
22+
export runtimeArgs
23+
24+
openfin -l -c $CONFIG
2225

test/app.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
},
2222
"runtime": {
2323
"arguments": "--v=1 --enable-chromium-window-alert --allow-http-screen-capture ",
24-
"version": "10.66.39.25"
24+
"version": "10.66.41.18"
2525
},
26-
"splashScreenImage": "https://cdn.openfin.co/demos/hello/splashscreen/splash_hello.png"
26+
"splashScreenImage": "https://cdn.openfin.co/demos/hello/splashscreen/splash_hello.png",
27+
"shortcut": {}
2728
}

test/config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ module.exports = (function () {
2121
remoteDriverPort: 9515,
2222
//remoteDriverPath: "/wd/hub",
2323
testTimeout: 20000,
24-
expectedRuntimeVersion: "10.66.39.25"
24+
expectedRuntimeVersion: "10.66.41.18"
2525
};
2626

2727
config.remoteDriverUrl = "http://" + config.remoteDriverHost + ":" + config.remoteDriverPort +

0 commit comments

Comments
 (0)