diff --git a/firefox-ios/Client/Application/AppleIntelligenceUtil.swift b/firefox-ios/Client/Application/AppleIntelligenceUtil.swift index 66f4928d0671..5204290f24cd 100644 --- a/firefox-ios/Client/Application/AppleIntelligenceUtil.swift +++ b/firefox-ios/Client/Application/AppleIntelligenceUtil.swift @@ -41,7 +41,11 @@ struct AppleIntelligenceUtil { @available(iOS 26, *) private func checkAppleIntelligenceAvailability(with model: LanguageModelProtocol) -> Bool { - return model.isAvailable + if AppConstants.isRunningUITests { + return false + } else { + return model.isAvailable + } } @available(iOS 26.0, *)