From 8f3c37b6b77b6754cd9445204c536c1a0671450a Mon Sep 17 00:00:00 2001 From: Juerg B <44573692+juergba@users.noreply.github.com> Date: Tue, 18 Oct 2022 20:17:38 +0200 Subject: [PATCH] chore(ci): workaround for firefox error (#4933) --- karma.conf.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/karma.conf.js b/karma.conf.js index 3d8b9d31fe..dbe3d53617 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -90,7 +90,8 @@ module.exports = config => { const buildId = `github-${env.GITHUB_RUN_ID}_${env.GITHUB_RUN_NUMBER}`; bundleDirPath = path.join(BASE_BUNDLE_DIR_PATH, buildId); sauceConfig = { - build: buildId + build: buildId, + geckodriverVersion: '0.30.0' // temporary workaround for firefox }; } else { console.error(`Local environment (${hostname}) detected`);