Commit 94ff969a authored by Eugene But's avatar Eugene But Committed by Commit Bot

Disable testPassKitDownload EG2 test on iOS 13.

PassKit text is not rendered because of iOS 13 system bug. EG1 test
can't test the text (only presentation) so it passes. EG2 is a better
test and fails because of a real bug.

Bug: 989816
Change-Id: I946b862daa244ab3b2ba4c795e6f7e433b254a04
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1733453
Auto-Submit: Eugene But <eugenebut@chromium.org>
Reviewed-by: default avatarJustin Cohen <justincohen@chromium.org>
Commit-Queue: Eugene But <eugenebut@chromium.org>
Cr-Commit-Position: refs/heads/master@{#683746}
parent 3591ffe6
......@@ -121,6 +121,11 @@ std::unique_ptr<net::test_server::HttpResponse> GetResponse(
});
GREYAssert(dialogShown, @"PassKit dialog was not shown");
#elif defined(CHROME_EARL_GREY_2)
if (@available(iOS 13, *)) {
// TODO(crbug.com/989816):Enable the test when FB6895185 is fixed.
EARL_GREY_TEST_DISABLED(@"PassKit view is not fully rendered.");
}
// EG2 test can use XCUIApplication API to check for PassKit dialog UI
// presentation.
XCUIApplication* app = [[XCUIApplication alloc] init];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment