diff --git a/src/libraries/System.ComponentModel.TypeConverter/tests/Security/Authentication/ExtendedProtection/ExtendedProtectionPolicyTypeConverterTests.cs b/src/libraries/System.ComponentModel.TypeConverter/tests/Security/Authentication/ExtendedProtection/ExtendedProtectionPolicyTypeConverterTests.cs index 55bf14930ffd7c..a09110342ff6d3 100644 --- a/src/libraries/System.ComponentModel.TypeConverter/tests/Security/Authentication/ExtendedProtection/ExtendedProtectionPolicyTypeConverterTests.cs +++ b/src/libraries/System.ComponentModel.TypeConverter/tests/Security/Authentication/ExtendedProtection/ExtendedProtectionPolicyTypeConverterTests.cs @@ -30,12 +30,14 @@ public void CanConvertTo_PositiveTests() } [Fact] + [PlatformSpecific(~TestPlatforms.Browser)] // System.Net.Security is not supported on this platform. public void ConvertTo_NullTypeTests() { Assert.Throws(() => converter.ConvertTo(null, CultureInfo.InvariantCulture, new ExtendedProtectionPolicy(PolicyEnforcement.Never), null)); } [Fact] + [PlatformSpecific(~TestPlatforms.Browser)] // System.Net.Security is not supported on this platform. public void ConvertTo_PositiveTests() { ExtendedProtectionPolicy policy = new ExtendedProtectionPolicy(PolicyEnforcement.Never); @@ -55,6 +57,7 @@ public void ConvertTo_PositiveTests() } [Theory] + [PlatformSpecific(~TestPlatforms.Browser)] // System.Net.Security is not supported on this platform. [InlineData(typeof(int))] [InlineData(typeof(ExtendedProtectionPolicy))] [InlineData(typeof(bool))] diff --git a/src/libraries/System.ComponentModel.TypeConverter/tests/XTypeDescriptionProviderTests.cs b/src/libraries/System.ComponentModel.TypeConverter/tests/XTypeDescriptionProviderTests.cs index 7dde31b29544f5..2b176d835eca5b 100644 --- a/src/libraries/System.ComponentModel.TypeConverter/tests/XTypeDescriptionProviderTests.cs +++ b/src/libraries/System.ComponentModel.TypeConverter/tests/XTypeDescriptionProviderTests.cs @@ -10,6 +10,7 @@ namespace System.Xml.Linq.Tests { + [ActiveIssue("https://github.com/dotnet/runtime/issues/39709", TestPlatforms.Browser)] public class XTypeDescriptionProviderTests { [Fact] diff --git a/src/libraries/tests.proj b/src/libraries/tests.proj index 4ea05eaec8c961..b2d6a080b9836d 100644 --- a/src/libraries/tests.proj +++ b/src/libraries/tests.proj @@ -22,7 +22,6 @@ -