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

Commit 923f757

Browse files
author
Chris Yang
authored
Revert "enable test (#5312)" (#6782)
This reverts commit 89ad5a9.
1 parent 89ad5a9 commit 923f757

File tree

1 file changed

+4
-4
lines changed
  • packages/google_maps_flutter/google_maps_flutter_ios/example/ios/RunnerUITests

1 file changed

+4
-4
lines changed

packages/google_maps_flutter/google_maps_flutter_ios/example/ios/RunnerUITests/GoogleMapsUITests.m

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ - (void)setUp {
1818
self.app = [[XCUIApplication alloc] init];
1919
[self.app launch];
2020

21+
// The location permission interception is currently not working.
22+
// See: https://github.com/flutter/flutter/issues/93325.
2123
[self
2224
addUIInterruptionMonitorWithDescription:@"Permission popups"
2325
handler:^BOOL(XCUIElement *_Nonnull interruptingElement) {
@@ -43,17 +45,15 @@ - (void)setUp {
4345
}];
4446
}
4547

46-
- (void)testUserInterface {
48+
// Temporarily disabled due to https://github.com/flutter/flutter/issues/93325
49+
- (void)skip_testUserInterface {
4750
XCUIApplication *app = self.app;
4851
XCUIElement *userInteface = app.staticTexts[@"User interface"];
4952
if (![userInteface waitForExistenceWithTimeout:30.0]) {
5053
os_log_error(OS_LOG_DEFAULT, "%@", app.debugDescription);
5154
XCTFail(@"Failed due to not able to find User interface");
5255
}
5356
[userInteface tap];
54-
// There is a known bug where the permission popups interruption won't get fired until a tap
55-
// happened in the app. We expect a permission popup so we do a tap here.
56-
[app tap];
5757
XCUIElement *platformView = app.otherElements[@"platform_view[0]"];
5858
if (![platformView waitForExistenceWithTimeout:30.0]) {
5959
os_log_error(OS_LOG_DEFAULT, "%@", app.debugDescription);

0 commit comments

Comments
 (0)