Skip to content

Commit fb8eb6b

Browse files
fix: dart format
1 parent 8c45834 commit fb8eb6b

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

example/integration_test/bug_reporting_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ void main() {
112112
await $('None').scrollTo().tap();
113113

114114
await wait(second: 2);
115-
final floatingButton = await getFAB($,waitUntilVisible: false);
115+
final floatingButton = await getFAB($, waitUntilVisible: false);
116116

117117
expect(
118118
isAndroid

example/integration_test/surveys_test.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@ void main() {
1010
($) async {
1111
await init($);
1212

13+
await wait(second: 2);
14+
1315
await $('Show Manual Survey').scrollTo().tap();
1416

15-
await wait(second: 1);
17+
await wait(second: 2);
1618

1719
final title = await getNativeView($,
1820
ios: 'SurveyNavigationVC',

example/integration_test/utils/utils.dart

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,12 @@ Future<GetNativeViewsResult> getNativeView(PatrolIntegrationTester $,
3535
return await $.native2.getNativeViews(nativeView);
3636
}
3737

38-
Future<GetNativeViewsResult> getFAB(PatrolIntegrationTester $,{bool waitUntilVisible = true}) {
38+
Future<GetNativeViewsResult> getFAB(PatrolIntegrationTester $,
39+
{bool waitUntilVisible = true}) {
3940
return getNativeView($,
4041
android: 'instabug_floating_button',
41-
ios: 'IBGFloatingButtonAccessibilityIdentifier',waitUntilVisible: waitUntilVisible);
42+
ios: 'IBGFloatingButtonAccessibilityIdentifier',
43+
waitUntilVisible: waitUntilVisible);
4244
}
4345

4446
bool get isAndroid {

0 commit comments

Comments
 (0)