Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,9 @@ void main() {
await Future.delayed(const Duration(seconds: 2));
},
skip: defaultTargetPlatform == TargetPlatform.macOS ||
defaultTargetPlatform == TargetPlatform.windows ||
defaultTargetPlatform == TargetPlatform.windows
// TODO(SelaseKay): this is crashing iOS app when running on CI
defaultTargetPlatform == TargetPlatform.iOS,
// defaultTargetPlatform == TargetPlatform.iOS,
);

test(
Expand Down Expand Up @@ -902,8 +902,7 @@ void main() {
},
// TODO(SelaseKay): this needs to be investigated as now failing on android
skip: defaultTargetPlatform == TargetPlatform.iOS ||
defaultTargetPlatform == TargetPlatform.macOS ||
defaultTargetPlatform == TargetPlatform.android,
defaultTargetPlatform == TargetPlatform.macOS,
);
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ void setupConfigurationTests() {
}
},
// TODO(SelaseKay): this needs to be investigated as now failing on android (should only run on android)
skip: true,
skip: defaultTargetPlatform != TargetPlatform.android,
);
});
}
Loading