File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ Changelog
3
3
4
4
## master
5
5
6
+ - Fixed iPad tests
7
+ - Added iPad to CI
6
8
- Added ` .introspectColorWell() ` on iOS and macOS
7
9
- Added ` .introspectButton() ` on macOS
8
10
- Fix UITextField with cornerRadius
Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ private struct NavigationTestView: View {
45
45
self . spy ( )
46
46
}
47
47
}
48
+ . navigationViewStyle ( StackNavigationViewStyle ( ) )
48
49
}
49
50
}
50
51
@@ -56,9 +57,9 @@ private struct ViewControllerTestView: View {
56
57
VStack {
57
58
EmptyView ( )
58
59
}
59
- . introspectViewController { viewController in
60
- self . spy ( )
61
- }
60
+ }
61
+ . introspectViewController { viewController in
62
+ self . spy ( )
62
63
}
63
64
}
64
65
}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ platform :ios do
5
5
lane :test do |options |
6
6
puts 'Running on GitHub CI.' if options [ :ci ] == 'github'
7
7
multi_scan (
8
- devices : [ "iPhone 8" ] ,
8
+ devices : [ "iPhone 8" , "iPad (8th generation)" ] ,
9
9
scheme : "Introspect iOS" ,
10
10
skip_build : options [ :ci ] == 'github' ,
11
11
try_count : 3 ,
You can’t perform that action at this time.
0 commit comments