Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@ import Common
struct SearchEngineFlagManager {
/// Whether Search Engine Consolidation is enabled.
/// If enabled, search engines are fetched from Remote Settings rather than our pre-bundled XML files.
/// TODO: [FXIOS-13834 & 11403] Remove hardcoded override once UI & unit tests are updated (or deleted)
guard !AppConstants.isRunningUnitTest { return false }
static var isSECEnabled: Bool {
// TODO: [FXIOS-13834 & 11403] Remove hardcoded override once UI & unit tests are updated (or deleted)
guard !AppConstants.isRunningUnitTest && !AppConstants.isRunningUITests else { return false }

// SEC enabled for all users. Related clean-up forthcoming in [FXIOS-11403].
return true
}
Expand Down