Quarantine components tests (#23644)

This commit is contained in:
Pranav K 2020-07-06 10:30:10 -07:00 committed by GitHub
parent f6bc908a32
commit 4b796c7bad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 0 deletions

View File

@ -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"));

View File

@ -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")]

View File

@ -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)