Commit 0a3ff882 authored by liaoyuke's avatar liaoyuke Committed by Commit bot

disable flaky showcase tests

Disabling following tests because they are flaky on devices (failed 5
times during the past 20 runs):

SCTabTestCase/testLaunchWithTopToolbar
SCTabTestCase/testLaunchWithBottomToolbar
SCTabTestCase/testLaunchAndTappingCell

TBR=lpromero@chromium.org
BUG=710662

Review-Url: https://codereview.chromium.org/2815773002
Cr-Commit-Position: refs/heads/master@{#463831}
parent b70a415b
...@@ -18,13 +18,15 @@ ...@@ -18,13 +18,15 @@
@implementation SCTabTestCase @implementation SCTabTestCase
// Tests launching TopToolbarTabViewController. // Tests launching TopToolbarTabViewController.
- (void)testLaunchWithTopToolbar { // TODO(crbug.com/710662): re-enable this test.
- (void)FLAKY_testLaunchWithTopToolbar {
showcase_utils::Open(@"TopToolbarTabViewController"); showcase_utils::Open(@"TopToolbarTabViewController");
showcase_utils::Close(); showcase_utils::Close();
} }
// Tests launching BottomToolbarTabViewController. // Tests launching BottomToolbarTabViewController.
- (void)testLaunchWithBottomToolbar { // TODO(crbug.com/710662): re-enable this test.
- (void)FLAKY_testLaunchWithBottomToolbar {
showcase_utils::Open(@"BottomToolbarTabViewController"); showcase_utils::Open(@"BottomToolbarTabViewController");
showcase_utils::Close(); showcase_utils::Close();
} }
......
...@@ -18,7 +18,8 @@ ...@@ -18,7 +18,8 @@
@implementation SCTabGridTestCase @implementation SCTabGridTestCase
// Tests launching TabGridViewController and tapping a cell. // Tests launching TabGridViewController and tapping a cell.
- (void)testLaunchAndTappingCell { // TODO(crbug.com/710662): re-enable this test.
- (void)FLAKY_testLaunchAndTappingCell {
showcase_utils::Open(@"TabGridViewController"); showcase_utils::Open(@"TabGridViewController");
[[EarlGrey selectElementWithMatcher:grey_accessibilityID(@"Tab 0_button")] [[EarlGrey selectElementWithMatcher:grey_accessibilityID(@"Tab 0_button")]
performAction:grey_tap()]; performAction:grey_tap()];
......
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