From 691878569d24ecc895e3818cf9680426b1d2e07c Mon Sep 17 00:00:00 2001 From: Timo Tijhof Date: Wed, 10 Jan 2024 16:14:31 +0000 Subject: [PATCH] Switch macOS from `firefox-bin` to `firefox` Upstream: * "firefox-bin is broken". https://bugzilla.mozilla.org/show_bug.cgi?id=1871447 * "remove firefox-bin". https://bugzilla.mozilla.org/show_bug.cgi?id=1873782 Long story short: * Firefox has shipped both for a long time. * Firefox signs it in a way that makes only `firefox` pass "hightened" security rules. * Firefox 121 adds support for Apple's Passkey feature and that raised the level of security rules it has to pass. Fixes https://github.com/karma-runner/karma-firefox-launcher/issues/328. --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 4d98ede..3de2629 100755 --- a/index.js +++ b/index.js @@ -171,7 +171,7 @@ const getFirefoxWithFallbackOnOSX = function () { const firefoxDirNames = Array.prototype.slice.call(arguments) const prefix = '/Applications/' - const suffix = '.app/Contents/MacOS/firefox-bin' + const suffix = '.app/Contents/MacOS/firefox' let bin let homeBin