File tree Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -154,12 +154,12 @@ jobs:
154
154
system-image : system-images;android-33;default;x86_64
155
155
- android/start-emulator :
156
156
avd-name : ' test'
157
- post-emulator-launch-assemble-command : ' '
157
+ post-emulator-launch-assemble-command : " "
158
158
- run :
159
159
name : Run E2E Tests
160
160
no_output_timeout : 30m
161
161
working_directory : example
162
- command : patrol test -t integration_test/ --verbose
162
+ command : patrol test -t integration_test/
163
163
164
164
test_ios :
165
165
macos :
Original file line number Diff line number Diff line change @@ -135,6 +135,7 @@ void main() {
135
135
136
136
await $('Invoke' ).scrollTo ().tap ();
137
137
138
+ await wait (second: 4 );
138
139
await assertOptionsPromptIsDisplayed ($);
139
140
});
140
141
@@ -227,8 +228,9 @@ void main() {
227
228
228
229
await wait (second: 4 );
229
230
230
- final callbackWidget = $(
231
- 'onDismiss callback called with DismissType.cancel and ReportType.other' );
231
+ final callbackWidget = await $(
232
+ 'onDismiss callback called with DismissType.cancel and ReportType.other' )
233
+ .waitUntilVisible (timeout: const Duration (seconds: 5 ));
232
234
expect (callbackWidget, findsOneWidget);
233
235
});
234
236
});
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ void main() {
12
12
13
13
await $('Show Feature Requests' ).scrollTo ().tap ();
14
14
15
+ await wait (second: 5 );
15
16
final title = await $.native2.getNativeViews (NativeSelector (
16
17
ios: IOSSelector (identifier: 'IBGFeatureListTableView' ),
17
18
android: AndroidSelector (
Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ void main() {
12
12
13
13
await $('Show Manual Survey' ).scrollTo ().tap ();
14
14
15
+ await wait (second: 5 );
16
+
15
17
final title = await $.native2.getNativeViews (NativeSelector (
16
18
ios: IOSSelector (identifier: 'SurveyNavigationVC' ),
17
19
android: AndroidSelector (
You can’t perform that action at this time.
0 commit comments