File tree 3 files changed +12
-13
lines changed
ios/Scenarios/ScenariosTests
3 files changed +12
-13
lines changed Original file line number Diff line number Diff line change @@ -227,7 +227,9 @@ - (void)testVisibleFlutterViewControllerRespondsToApplicationLifecycle {
227
227
[engine setViewController: nil ];
228
228
}
229
229
230
- - (void )testFlutterViewControllerDetachingSendsApplicationLifecycle {
230
+ // TODO(cbracken): re-enable this test by removing the skip_ prefix once the source of its flakiness
231
+ // has been identified. https://github.com/flutter/flutter/issues/61620
232
+ - (void )skip_testFlutterViewControllerDetachingSendsApplicationLifecycle {
231
233
XCTestExpectation* engineStartedExpectation = [self expectationWithDescription: @" Engine started" ];
232
234
233
235
// Let the engine finish booting (at the end of which the channels are properly set-up) before
Original file line number Diff line number Diff line change @@ -33,7 +33,9 @@ - (void)tearDown {
33
33
[super tearDown ];
34
34
}
35
35
36
- - (void )testSettingInitialRoute {
36
+ // TODO(cbracken): re-enable this test by removing the skip_ prefix once the source of its flakiness
37
+ // has been identified. https://github.com/flutter/flutter/issues/61620
38
+ - (void )skip_testSettingInitialRoute {
37
39
self.flutterViewController =
38
40
[[FlutterViewController alloc ] initWithProject: nil
39
41
initialRoute: @" myCustomInitialRoute"
Original file line number Diff line number Diff line change @@ -33,14 +33,9 @@ if [[ $# -eq 1 ]]; then
33
33
FLUTTER_ENGINE=" $1 "
34
34
fi
35
35
36
- echo " iOS Scenarios tests currently disabled due to flakiness"
37
- echo " See: https://github.com/flutter/flutter/issues/61620"
38
-
39
- # TODO(cbracken): re-enable when
40
- # https://github.com/flutter/flutter/issues/61620 is fixed.
41
- # cd ios/Scenarios
42
- # set -o pipefail && xcodebuild -sdk iphonesimulator \
43
- # -scheme Scenarios \
44
- # -destination 'platform=iOS Simulator,name=iPhone 8' \
45
- # test \
46
- # FLUTTER_ENGINE="$FLUTTER_ENGINE"
36
+ cd ios/Scenarios
37
+ set -o pipefail && xcodebuild -sdk iphonesimulator \
38
+ -scheme Scenarios \
39
+ -destination ' platform=iOS Simulator,name=iPhone 8' \
40
+ test \
41
+ FLUTTER_ENGINE=" $FLUTTER_ENGINE "
You can’t perform that action at this time.
0 commit comments