We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7e5689 commit 85cbc0dCopy full SHA for 85cbc0d
firefox-ios/Client/Frontend/Browser/SearchEngines/SearchEngineFlagManager.swift
@@ -8,8 +8,11 @@ struct SearchEngineFlagManager {
8
/// Whether Search Engine Consolidation is enabled.
9
/// If enabled, search engines are fetched from Remote Settings rather than our pre-bundled XML files.
10
/// TODO: [FXIOS-13834 & 11403] Remove hardcoded override once UI & unit tests are updated (or deleted)
11
- guard !AppConstants.isRunningUnitTest { return false }
12
static var isSECEnabled: Bool {
+ // If you want to disable during unit tests, do it here:
13
+ if AppConstants.isRunningUnitTest {
14
+ return false
15
+ }
16
// SEC enabled for all users. Related clean-up forthcoming in [FXIOS-11403].
17
return true
18
}
0 commit comments