From 4b796c7bad1aa5f5aab6980ffe4f3ba78d4318e6 Mon Sep 17 00:00:00 2001 From: Pranav K Date: Mon, 6 Jul 2020 10:30:10 -0700 Subject: [PATCH] Quarantine components tests (#23644) --- src/Components/test/E2ETest/Tests/ErrorNotificationTest.cs | 1 + src/Components/test/E2ETest/Tests/EventCallbackTest.cs | 2 ++ src/Components/test/E2ETest/Tests/GlobalizationTest.cs | 2 ++ 3 files changed, 5 insertions(+) diff --git a/src/Components/test/E2ETest/Tests/ErrorNotificationTest.cs b/src/Components/test/E2ETest/Tests/ErrorNotificationTest.cs index bdac8d5ba4..1ebd759cae 100644 --- a/src/Components/test/E2ETest/Tests/ErrorNotificationTest.cs +++ b/src/Components/test/E2ETest/Tests/ErrorNotificationTest.cs @@ -34,6 +34,7 @@ namespace Microsoft.AspNetCore.Components.E2ETest.Tests } [Fact] + [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23643")] public void ShowsErrorNotification_OnError_Dismiss() { var errorUi = Browser.FindElement(By.Id("blazor-error-ui")); diff --git a/src/Components/test/E2ETest/Tests/EventCallbackTest.cs b/src/Components/test/E2ETest/Tests/EventCallbackTest.cs index ad0d915b39..839fd32b4e 100644 --- a/src/Components/test/E2ETest/Tests/EventCallbackTest.cs +++ b/src/Components/test/E2ETest/Tests/EventCallbackTest.cs @@ -5,6 +5,7 @@ using BasicTestApp; using Microsoft.AspNetCore.Components.E2ETest.Infrastructure; using Microsoft.AspNetCore.Components.E2ETest.Infrastructure.ServerFixtures; using Microsoft.AspNetCore.E2ETesting; +using Microsoft.AspNetCore.Testing; using OpenQA.Selenium; using Xunit; using Xunit.Abstractions; @@ -29,6 +30,7 @@ namespace Microsoft.AspNetCore.Components.E2ETest.Tests } [Theory] + [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23643")] [InlineData("capturing_lambda")] [InlineData("unbound_lambda")] [InlineData("unbound_lambda_nested")] diff --git a/src/Components/test/E2ETest/Tests/GlobalizationTest.cs b/src/Components/test/E2ETest/Tests/GlobalizationTest.cs index cb9ffeaeca..2428dd744c 100644 --- a/src/Components/test/E2ETest/Tests/GlobalizationTest.cs +++ b/src/Components/test/E2ETest/Tests/GlobalizationTest.cs @@ -6,6 +6,7 @@ using System.Globalization; using Microsoft.AspNetCore.Components.E2ETest.Infrastructure; using Microsoft.AspNetCore.Components.E2ETest.Infrastructure.ServerFixtures; using Microsoft.AspNetCore.E2ETesting; +using Microsoft.AspNetCore.Testing; using OpenQA.Selenium; using Xunit; using Xunit.Abstractions; @@ -86,6 +87,7 @@ namespace Microsoft.AspNetCore.Components.E2ETests.Tests // We need to do step 4 to make sure that the value we're entering can "stick" in the form field. // We can't use ".Text" because DOM reasons :( [Theory] + [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23643")] [InlineData("en-US")] [InlineData("fr-FR")] public void CanSetCultureAndParseCultureInvariantNumbersAndDatesWithInputFields(string culture)