commit 501d8d55cf2bbf539a47ef88587a20e9b0cb6ea1
parent af28418df5baad1b9934351fa8c5d62e2ef699a2
Author: AndiAJ <andiaj@users.noreply.github.com>
Date: Fri, 21 Nov 2025 16:13:59 +0000
Bug 2001661 - Don't send command to enable the network connection in the test setup r=aaronmt
All UI tests successfully passed 1x on Firebase ✅
Differential Revision: https://phabricator.services.mozilla.com/D273587
Diffstat:
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/mobile/android/fenix/app/src/androidTest/java/org/mozilla/fenix/helpers/TestSetup.kt b/mobile/android/fenix/app/src/androidTest/java/org/mozilla/fenix/helpers/TestSetup.kt
@@ -62,7 +62,10 @@ open class TestSetup {
// This will only work in case of a RetryTestRule execution.
AppAndSystemHelper.clearDownloadsFolder()
// Make sure the Wifi and Mobile Data connections are on.
- AppAndSystemHelper.setNetworkEnabled(true)
+
+ // Currently disabled due to network connection problems encountered on Firebase
+ // despite having all UI tests that interact with network connection settings disabled
+ // AppAndSystemHelper.setNetworkEnabled(true)
// Make sure that the data saver system setting is disabled.
enableDataSaverSystemSetting(enabled = false)