diff --git a/src/Components/test/E2ETest/Tests/BindTest.cs b/src/Components/test/E2ETest/Tests/BindTest.cs index 4a4abbbe8bf9..f6f21b199c54 100644 --- a/src/Components/test/E2ETest/Tests/BindTest.cs +++ b/src/Components/test/E2ETest/Tests/BindTest.cs @@ -551,7 +551,7 @@ public void CanBindTextboxNullableDouble() Assert.Equal(string.Empty, mirrorValue.GetAttribute("value")); } - [Fact(Skip = "https://github.com/dotnet/aspnetcore/issues/30312")] + [Fact] public void CanBindTextboxDecimal() { var target = Browser.Exists(By.Id("textbox-decimal")); @@ -574,7 +574,7 @@ public void CanBindTextboxDecimal() Assert.Equal("0.010", mirrorValue.GetAttribute("value")); } - [Fact(Skip = "https://github.com/dotnet/aspnetcore/issues/30312")] + [Fact] public void CanBindTextboxNullableDecimal() { var target = Browser.Exists(By.Id("textbox-nullable-decimal")); diff --git a/src/Components/test/E2ETest/Tests/WebAssemblyICUShardingTest.cs b/src/Components/test/E2ETest/Tests/WebAssemblyICUShardingTest.cs index adb01de8a06f..704427cea0b9 100644 --- a/src/Components/test/E2ETest/Tests/WebAssemblyICUShardingTest.cs +++ b/src/Components/test/E2ETest/Tests/WebAssemblyICUShardingTest.cs @@ -81,7 +81,7 @@ public void LoadingApp_RussianLanguage_Works() Assert.Equal("Hello", localizedDisplay.Text); // No localized resources for this culture. } - [Fact(Skip = "Figure out why this is broken")] + [Fact] public void LoadingApp_KannadaLanguage_Works() { // Arrange diff --git a/src/Components/test/E2ETest/Tests/WebAssemblyStringComparisonTest.cs b/src/Components/test/E2ETest/Tests/WebAssemblyStringComparisonTest.cs deleted file mode 100644 index 61eb71c618ce..000000000000 --- a/src/Components/test/E2ETest/Tests/WebAssemblyStringComparisonTest.cs +++ /dev/null @@ -1,35 +0,0 @@ -// Copyright (c) .NET Foundation. All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. - -using BasicTestApp; -using Microsoft.AspNetCore.Components.E2ETest.Infrastructure; -using Microsoft.AspNetCore.Components.E2ETest.Infrastructure.ServerFixtures; -using Microsoft.AspNetCore.E2ETesting; -using OpenQA.Selenium; -using Xunit; -using Xunit.Abstractions; - -namespace Microsoft.AspNetCore.Components.E2ETest.Tests -{ - public class WebAssemblyStringComparisonTest : ServerTestBase> - { - public WebAssemblyStringComparisonTest( - BrowserFixture browserFixture, - ToggleExecutionModeServerFixture serverFixture, - ITestOutputHelper output) - : base(browserFixture, serverFixture, output) - { - } - - [Fact(Skip = "https://github.com/dotnet/runtime/issues/38126")] - public void InvariantCultureWorksAsExpected() - { - Navigate(ServerPathBase, noReload: false); - Browser.MountTestComponent(); - - var result = Browser.Exists(By.Id("results")); - - Assert.Equal("Ordinal: False Invariant: True", result.Text); - } - } -}