Skip to content

Commit e7b8223

Browse files
fix: dart format
1 parent eb7894e commit e7b8223

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,12 +154,12 @@ jobs:
154154
system-image: system-images;android-33;default;x86_64
155155
- android/start-emulator:
156156
avd-name: 'test'
157-
post-emulator-launch-assemble-command: ''
157+
post-emulator-launch-assemble-command: ""
158158
- run:
159159
name: Run E2E Tests
160160
no_output_timeout: 30m
161161
working_directory: example
162-
command: patrol test -t integration_test/ --verbose
162+
command: patrol test -t integration_test/
163163

164164
test_ios:
165165
macos:

example/integration_test/bug_reporting_test.dart

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ void main() {
135135

136136
await $('Invoke').scrollTo().tap();
137137

138+
await wait(second: 4);
138139
await assertOptionsPromptIsDisplayed($);
139140
});
140141

@@ -227,8 +228,9 @@ void main() {
227228

228229
await wait(second: 4);
229230

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));
232234
expect(callbackWidget, findsOneWidget);
233235
});
234236
});

example/integration_test/feature_requests_test.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ void main() {
1212

1313
await $('Show Feature Requests').scrollTo().tap();
1414

15+
await wait(second: 5);
1516
final title = await $.native2.getNativeViews(NativeSelector(
1617
ios: IOSSelector(identifier: 'IBGFeatureListTableView'),
1718
android: AndroidSelector(

example/integration_test/surveys_test.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ void main() {
1212

1313
await $('Show Manual Survey').scrollTo().tap();
1414

15+
await wait(second: 5);
16+
1517
final title = await $.native2.getNativeViews(NativeSelector(
1618
ios: IOSSelector(identifier: 'SurveyNavigationVC'),
1719
android: AndroidSelector(

0 commit comments

Comments
 (0)