From b2890c6b3b10185885fe4350944c7fc72d88ec73 Mon Sep 17 00:00:00 2001 From: Maxim Lipnin Date: Fri, 19 Jun 2020 13:21:30 +0300 Subject: [PATCH] Disable TermInfo library tests on WASM (#38092) We disable TermInfo library tests because the respective functionality doesn't make sense on WASM. --- src/libraries/System.Console/tests/TermInfo.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libraries/System.Console/tests/TermInfo.cs b/src/libraries/System.Console/tests/TermInfo.cs index 9d444e0..c499116 100644 --- a/src/libraries/System.Console/tests/TermInfo.cs +++ b/src/libraries/System.Console/tests/TermInfo.cs @@ -8,6 +8,7 @@ using System.Linq; using System.Reflection; using Xunit; +[PlatformSpecific(~TestPlatforms.Browser)] public class TermInfo { // Names of internal members accessed via reflection -- 2.7.4