parent
6569a749d4
commit
f4f5e32df3
|
@ -3,6 +3,8 @@ Changelog
|
|||
|
||||
## master
|
||||
|
||||
- Fixed iPad tests
|
||||
- Added iPad to CI
|
||||
- Added `.introspectColorWell()` on iOS and macOS
|
||||
- Added `.introspectButton()` on macOS
|
||||
- Fix UITextField with cornerRadius
|
||||
|
|
|
@ -45,6 +45,7 @@ private struct NavigationTestView: View {
|
|||
self.spy()
|
||||
}
|
||||
}
|
||||
.navigationViewStyle(StackNavigationViewStyle())
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -56,12 +57,12 @@ private struct ViewControllerTestView: View {
|
|||
VStack {
|
||||
EmptyView()
|
||||
}
|
||||
}
|
||||
.introspectViewController { viewController in
|
||||
self.spy()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@available(iOS 13.0, tvOS 13.0, macOS 10.15.0, *)
|
||||
private struct NavigationRootTestView: View {
|
||||
|
|
|
@ -5,7 +5,7 @@ platform :ios do
|
|||
lane :test do |options|
|
||||
puts 'Running on GitHub CI.' if options[:ci] == 'github'
|
||||
multi_scan(
|
||||
devices: ["iPhone 8"],
|
||||
devices: ["iPhone 8", "iPad (8th generation)"],
|
||||
scheme: "Introspect iOS",
|
||||
skip_build: options[:ci] == 'github',
|
||||
try_count: 3,
|
||||
|
|
Loading…
Reference in New Issue