Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 6e4af80

Browse files
authored
Disable iOS application lifetime Scenario tests (#21125)
This speculatively disables the ApplicationLifecycle Scenarios iOS tests which continue to fail after being re-enabled in #21087. Related P0 issue: flutter/flutter#61620
1 parent c361624 commit 6e4af80

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

testing/scenario_app/ios/Scenarios/ScenariosTests/AppLifecycleTests.m

+9-3
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ - (void)setUp {
4040
self.continueAfterFailure = NO;
4141
}
4242

43-
- (void)testDismissedFlutterViewControllerNotRespondingToApplicationLifecycle {
43+
// TODO(cbracken): re-enable this test by removing the skip_ prefix once the source of its flakiness
44+
// has been identified. https://github.com/flutter/flutter/issues/61620
45+
- (void)skip_testDismissedFlutterViewControllerNotRespondingToApplicationLifecycle {
4446
XCTestExpectation* engineStartedExpectation = [self expectationWithDescription:@"Engine started"];
4547

4648
// Let the engine finish booting (at the end of which the channels are properly set-up) before
@@ -175,7 +177,9 @@ - (void)testDismissedFlutterViewControllerNotRespondingToApplicationLifecycle {
175177
[engine destroyContext];
176178
}
177179

178-
- (void)testVisibleFlutterViewControllerRespondsToApplicationLifecycle {
180+
// TODO(cbracken): re-enable this test by removing the skip_ prefix once the source of its flakiness
181+
// has been identified. https://github.com/flutter/flutter/issues/61620
182+
- (void)skip_testVisibleFlutterViewControllerRespondsToApplicationLifecycle {
179183
XCTestExpectation* engineStartedExpectation = [self expectationWithDescription:@"Engine started"];
180184

181185
// Let the engine finish booting (at the end of which the channels are properly set-up) before
@@ -280,7 +284,9 @@ - (void)testVisibleFlutterViewControllerRespondsToApplicationLifecycle {
280284
[engine destroyContext];
281285
}
282286

283-
- (void)testFlutterViewControllerDetachingSendsApplicationLifecycle {
287+
// TODO(cbracken): re-enable this test by removing the skip_ prefix once the source of its flakiness
288+
// has been identified. https://github.com/flutter/flutter/issues/61620
289+
- (void)skip_testFlutterViewControllerDetachingSendsApplicationLifecycle {
284290
XCTestExpectation* engineStartedExpectation = [self expectationWithDescription:@"Engine started"];
285291

286292
// Let the engine finish booting (at the end of which the channels are properly set-up) before

0 commit comments

Comments
 (0)