We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f0a8db commit affeaa7Copy full SHA for affeaa7
test-gui.sh
@@ -5,10 +5,14 @@ set -exuo pipefail
5
cd frontend
6
7
yarn install
8
-if [ -z "${CHROME_VERSION-}" ]; then
+if [ "${BRIDGE_E2E_BROWSER_NAME-}" == 'firefox' ]; then
9
yarn run webdriver-update
10
else
11
- yarn run webdriver-update --versions.chrome="$CHROME_VERSION"
+ if [ -n "${CHROME_VERSION-}" ]; then
12
+ yarn run webdriver-update --versions.chrome="$CHROME_VERSION" --gecko=false
13
+ else
14
+ yarn run webdriver-update --gecko=false
15
+ fi
16
fi
17
18
if [ $# -gt 0 ] && [ -n "$1" ]; then
0 commit comments