Commit c5e45fb5 authored by Justin Cohen's avatar Justin Cohen Committed by Commit Bot

[ios] Disable iOS13 context menu tests.

Bug: 976259
Change-Id: I6f487fd16096209478be37be0bb8aa9e7ea859c9
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1726793
Auto-Submit: Justin Cohen <justincohen@chromium.org>
Commit-Queue: Peter Lee <pkl@chromium.org>
Reviewed-by: default avatarPeter Lee <pkl@chromium.org>
Cr-Commit-Position: refs/heads/master@{#682430}
parent 17c336c1
......@@ -162,6 +162,13 @@ void SelectTabAtIndexInCurrentMode(NSUInteger index) {
@implementation ContextMenuTestCase
// TODO(crbug.com/976259) Disable broken context menu tests on Xcode 11 beta 5.
+ (NSArray*)testInvocations {
if (@available(iOS 13, *))
return @[];
return [super testInvocations];
}
+ (void)setUp {
[super setUp];
[ChromeEarlGrey setContentSettings:CONTENT_SETTING_ALLOW];
......
......@@ -38,6 +38,13 @@ const char kHtmlFile[] =
@implementation ContextMenuTestCase
// TODO(crbug.com/976259) Disable broken context menu tests on Xcode 11 beta 5.
+ (NSArray*)testInvocations {
if (@available(iOS 13, *))
return @[];
return [super testInvocations];
}
- (void)setUp {
[super setUp];
......
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