From d50cb3044355d13dcaf1812e55bc624d771ebddf Mon Sep 17 00:00:00 2001 From: Greg Magolan Date: Tue, 14 Apr 2020 07:24:17 -0700 Subject: [PATCH] test: disable failing saucelabs tests (#36620) PR Close #36620 --- packages/elements/test/BUILD.bazel | 11 +++++++++++ packages/forms/test/BUILD.bazel | 9 +++++++++ packages/platform-browser/test/BUILD.bazel | 11 +++++++++++ packages/router/test/BUILD.bazel | 15 +++++++++++++++ 4 files changed, 46 insertions(+) diff --git a/packages/elements/test/BUILD.bazel b/packages/elements/test/BUILD.bazel index c73f50e5bc..29565ccc70 100644 --- a/packages/elements/test/BUILD.bazel +++ b/packages/elements/test/BUILD.bazel @@ -43,6 +43,17 @@ karma_web_test_suite( bootstrap = [ ":elements_test_bootstrap_scripts", ], + tags = [ + # disabled on 2020-04-14 due to failure on saucelabs monitor job + # https://app.circleci.com/pipelines/github/angular/angular/13320/workflows/9ca3527a-d448-4a64-880a-fb4de9d1fece/jobs/680645 + # ``` + # IE 10.0.0 (Windows 8.0.0) ERROR + # An error was thrown in afterAll + # Syntax error + # ``` + "fixme-saucelabs-ve", + "fixme-saucelabs-ivy", + ], deps = [ ":test_lib", ], diff --git a/packages/forms/test/BUILD.bazel b/packages/forms/test/BUILD.bazel index f9a3325516..8be33e239c 100644 --- a/packages/forms/test/BUILD.bazel +++ b/packages/forms/test/BUILD.bazel @@ -35,6 +35,15 @@ jasmine_node_test( karma_web_test_suite( name = "test_web", + tags = [ + # disabled on 2020-04-14 due to failure on saucelabs monitor job + # https://app.circleci.com/pipelines/github/angular/angular/13320/workflows/9ca3527a-d448-4a64-880a-fb4de9d1fece/jobs/680645 + # ``` + # IE 11.0.0 (Windows 8.1.0.0) template-driven forms integration tests basic functionality should report properties which are written outside of template bindings FAILED + # InvalidStateError: InvalidStateError + # ``` + "fixme-saucelabs-ivy", + ], deps = [ ":test_lib", ], diff --git a/packages/platform-browser/test/BUILD.bazel b/packages/platform-browser/test/BUILD.bazel index 901e3f6c94..0f518dcf68 100644 --- a/packages/platform-browser/test/BUILD.bazel +++ b/packages/platform-browser/test/BUILD.bazel @@ -53,6 +53,17 @@ karma_web_test_suite( static_files = [ ":static_assets/test.html", ], + tags = [ + # disabled on 2020-04-14 due to failure on saucelabs monitor job + # https://app.circleci.com/pipelines/github/angular/angular/13320/workflows/9ca3527a-d448-4a64-880a-fb4de9d1fece/jobs/680645 + # ``` + # Chrome 73.0.3683 (Windows 7.0.0) public testing API using the test injector with modules components with template url should allow to createSync components with templateUrl after explicit async compilation FAILED + # Error: Component 'CompWithUrlTemplate' is not resolved: + # IE 10.0.0 (Windows 8.0.0) ERROR: 'Unhandled Promise rejection:', 'Failed to load ./sometemplate.html', '; Zone:', 'ProxyZone', '; Task:', 'Promise.then', '; Value:', 'Failed to load ./sometemplate.html', undefined + # Chrome Mobile 74.0.3729 (Android 0.0.0) ERROR: 'Unhandled Promise rejection:', 'Failed to load ./sometemplate.html', '; Zone:', 'ProxyZone', '; Task:', 'Promise.then', '; Value:', 'Failed to load ./sometemplate.html', undefined + # ``` + "fixme-saucelabs-ivy", + ], deps = [ ":test_lib", ], diff --git a/packages/router/test/BUILD.bazel b/packages/router/test/BUILD.bazel index bbadc0ccba..20191085f1 100644 --- a/packages/router/test/BUILD.bazel +++ b/packages/router/test/BUILD.bazel @@ -44,6 +44,21 @@ jasmine_node_test( karma_web_test_suite( name = "test_web", + tags = [ + # disabled on 2020-04-14 due to failure on saucelabs monitor job + # https://app.circleci.com/pipelines/github/angular/angular/13320/workflows/9ca3527a-d448-4a64-880a-fb4de9d1fece/jobs/680645 + # ``` + # Chrome 73.0.3683 (Windows 7.0.0) ERROR: 'ERROR', Error: Uncaught (in promise): Error: Cannot match any routes. URL Segment: 'aa' + # Error: Cannot match any routes. URL Segment: 'aa' + # IE 11.0.0 (Windows 8.1.0.0) ERROR: 'ERROR', Error: Uncaught (in promise): Error: Cannot match any routes. URL Segment: 'aa' + # Error: Cannot match any routes. URL Segment: 'aa' + # Firefox 65.0.0 (Windows 7.0.0) ERROR: 'ERROR', Error: Uncaught (in promise): Error: Cannot match any routes. URL Segment: 'aa' + # IE 10.0.0 (Windows 8.0.0) ERROR: 'ERROR', Error: Uncaught (in promise): Error: Cannot match any routes. URL Segment: 'aa' + # Error: Cannot match any routes. URL Segment: 'aa' + # ``` + "fixme-saucelabs-ve", + "fixme-saucelabs-ivy", + ], deps = [ ":test_lib", ],