Quarantine components tests (#23644)
This commit is contained in:
parent
f6bc908a32
commit
4b796c7bad
|
|
@ -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"));
|
||||
|
|
|
|||
|
|
@ -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")]
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue