Commit 433ce2ab authored by Lan Wei's avatar Lan Wei Committed by Commit Bot

Disable flaky test testAddressesViewControllerIsPresented

AddressViewControllerTestCase/
testAddressesViewControllerIsPresented is flaky on
ios-simulator-full-configs,
https://ci.chromium.org/p/chromium/builders/ci/
ios-simulator-full-configs/25750,
disable it for now until it is fixed.

TBR=javierrobles@chromium.org

Bug: 1116274
Change-Id: Ia300c71fb7acb074095842436a20fd3b9380cd9b
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2355291Reviewed-by: default avatarLan Wei <lanwei@chromium.org>
Commit-Queue: Lan Wei <lanwei@chromium.org>
Cr-Commit-Position: refs/heads/master@{#797989}
parent 125ccd29
......@@ -69,7 +69,15 @@ BOOL WaitForKeyboardToAppear() {
}
// Tests that the addresses view controller appears on screen.
- (void)testAddressesViewControllerIsPresented {
// TODO(crbug.com/1116274): Flaky on ios simulator.
#if TARGET_IPHONE_SIMULATOR
#define MAYBE_testAddressesViewControllerIsPresented \
DISABLED_testAddressesViewControllerIsPresented
#else
#define MAYBE_testAddressesViewControllerIsPresented \
testAddressesViewControllerIsPresented
#endif
- (void)MAYBE_testAddressesViewControllerIsPresented {
// Bring up the keyboard.
[[EarlGrey selectElementWithMatcher:chrome_test_util::WebViewMatcher()]
performAction:chrome_test_util::TapWebElementWithId(kFormElementName)];
......
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