snapshot/lib/assets/SnapshotHelper.swift in fastlane-2.149.1 vs snapshot/lib/assets/SnapshotHelper.swift in fastlane-2.150.0.rc1
- old
+ new
@@ -216,22 +216,22 @@
}
}
private extension XCUIElementAttributes {
var isNetworkLoadingIndicator: Bool {
- if hasWhiteListedIdentifier { return false }
+ if hasAllowListedIdentifier { return false }
let hasOldLoadingIndicatorSize = frame.size == CGSize(width: 10, height: 20)
let hasNewLoadingIndicatorSize = frame.size.width.isBetween(46, and: 47) && frame.size.height.isBetween(2, and: 3)
return hasOldLoadingIndicatorSize || hasNewLoadingIndicatorSize
}
- var hasWhiteListedIdentifier: Bool {
- let whiteListedIdentifiers = ["GeofenceLocationTrackingOn", "StandardLocationTrackingOn"]
+ var hasAllowListedIdentifier: Bool {
+ let allowListedIdentifiers = ["GeofenceLocationTrackingOn", "StandardLocationTrackingOn"]
- return whiteListedIdentifiers.contains(identifier)
+ return allowListedIdentifiers.contains(identifier)
}
func isStatusBar(_ deviceWidth: CGFloat) -> Bool {
if elementType == .statusBar { return true }
guard frame.origin == .zero else { return false }
@@ -277,6 +277,6 @@
}
}
// Please don't remove the lines below
// They are used to detect outdated configuration files
-// SnapshotHelperVersion [1.22]
+// SnapshotHelperVersion [1.23]