@@ -347,6 +347,10 @@ namespace TerminalAppLocalTests
347347
348348 void TabTests::TryDuplicateBadTab ()
349349 {
350+ BEGIN_TEST_METHOD_PROPERTIES ()
351+ TEST_METHOD_PROPERTY (L" Ignore" , L" True" ) // GH#19610 tracks re-enabling this test
352+ END_TEST_METHOD_PROPERTIES ()
353+
350354 // * Create a tab with a profile with GUID 1
351355 // * Reload the settings so that GUID 1 is no longer in the list of profiles
352356 // * Try calling _DuplicateFocusedTab on tab 1
@@ -434,6 +438,10 @@ namespace TerminalAppLocalTests
434438
435439 void TabTests::TryDuplicateBadPane ()
436440 {
441+ BEGIN_TEST_METHOD_PROPERTIES ()
442+ TEST_METHOD_PROPERTY (L" Ignore" , L" True" ) // GH#19610 tracks re-enabling this test
443+ END_TEST_METHOD_PROPERTIES ()
444+
437445 // * Create a tab with a profile with GUID 1
438446 // * Reload the settings so that GUID 1 is no longer in the list of profiles
439447 // * Try calling _SplitPane(Duplicate) on tab 1
@@ -685,6 +693,7 @@ namespace TerminalAppLocalTests
685693 {
686694 BEGIN_TEST_METHOD_PROPERTIES ()
687695 TEST_METHOD_PROPERTY (L" IsolationLevel" , L" Method" )
696+ TEST_METHOD_PROPERTY (L" Ignore" , L" True" ) // GH#19610 tracks re-enabling this test
688697 END_TEST_METHOD_PROPERTIES ()
689698
690699 auto page = _commonSetup ();
@@ -724,6 +733,10 @@ namespace TerminalAppLocalTests
724733
725734 void TabTests::MoveFocusFromZoomedPane ()
726735 {
736+ BEGIN_TEST_METHOD_PROPERTIES ()
737+ TEST_METHOD_PROPERTY (L" Ignore" , L" True" ) // GH#19610 tracks re-enabling this test
738+ END_TEST_METHOD_PROPERTIES ()
739+
727740 auto page = _commonSetup ();
728741
729742 Log::Comment (L" Create a second pane" );
@@ -769,6 +782,10 @@ namespace TerminalAppLocalTests
769782
770783 void TabTests::CloseZoomedPane ()
771784 {
785+ BEGIN_TEST_METHOD_PROPERTIES ()
786+ TEST_METHOD_PROPERTY (L" Ignore" , L" True" ) // GH#19610 tracks re-enabling this test
787+ END_TEST_METHOD_PROPERTIES ()
788+
772789 auto page = _commonSetup ();
773790
774791 Log::Comment (L" Create a second pane" );
@@ -824,6 +841,10 @@ namespace TerminalAppLocalTests
824841
825842 void TabTests::SwapPanes ()
826843 {
844+ BEGIN_TEST_METHOD_PROPERTIES ()
845+ TEST_METHOD_PROPERTY (L" Ignore" , L" True" ) // GH#19610 tracks re-enabling this test
846+ END_TEST_METHOD_PROPERTIES ()
847+
827848 auto page = _commonSetup ();
828849
829850 Log::Comment (L" Setup 4 panes." );
@@ -1030,6 +1051,10 @@ namespace TerminalAppLocalTests
10301051
10311052 void TabTests::NextMRUTab ()
10321053 {
1054+ BEGIN_TEST_METHOD_PROPERTIES ()
1055+ TEST_METHOD_PROPERTY (L" Ignore" , L" True" ) // GH#19610 tracks re-enabling this test
1056+ END_TEST_METHOD_PROPERTIES ()
1057+
10331058 // This is a test for GH#8025 - we want to make sure that we can do both
10341059 // in-order and MRU tab traversal, using the tab switcher and with the
10351060 // tab switcher disabled.
@@ -1146,6 +1171,10 @@ namespace TerminalAppLocalTests
11461171
11471172 void TabTests::VerifyCommandPaletteTabSwitcherOrder ()
11481173 {
1174+ BEGIN_TEST_METHOD_PROPERTIES ()
1175+ TEST_METHOD_PROPERTY (L" Ignore" , L" True" ) // GH#19610 tracks re-enabling this test
1176+ END_TEST_METHOD_PROPERTIES ()
1177+
11491178 // This is a test for GH#8188 - we want to make sure that the order of tabs
11501179 // is preserved in the CommandPalette's TabSwitcher
11511180
@@ -1241,6 +1270,7 @@ namespace TerminalAppLocalTests
12411270 {
12421271 BEGIN_TEST_METHOD_PROPERTIES ()
12431272 TEST_METHOD_PROPERTY (L" IsolationLevel" , L" Method" )
1273+ TEST_METHOD_PROPERTY (L" Ignore" , L" True" ) // GH#19610 tracks re-enabling this test
12441274 END_TEST_METHOD_PROPERTIES ()
12451275
12461276 auto page = _commonSetup ();
@@ -1273,6 +1303,7 @@ namespace TerminalAppLocalTests
12731303 {
12741304 BEGIN_TEST_METHOD_PROPERTIES ()
12751305 TEST_METHOD_PROPERTY (L" IsolationLevel" , L" Method" )
1306+ TEST_METHOD_PROPERTY (L" Ignore" , L" True" ) // GH#19610 tracks re-enabling this test
12761307 END_TEST_METHOD_PROPERTIES ()
12771308
12781309 auto page = _commonSetup ();
@@ -1305,6 +1336,10 @@ namespace TerminalAppLocalTests
13051336
13061337 void TabTests::TestPreviewCommitScheme ()
13071338 {
1339+ BEGIN_TEST_METHOD_PROPERTIES ()
1340+ TEST_METHOD_PROPERTY (L" Ignore" , L" True" ) // GH#19610 tracks re-enabling this test
1341+ END_TEST_METHOD_PROPERTIES ()
1342+
13081343 Log::Comment (L" Preview a color scheme. Make sure it's applied, then committed accordingly" );
13091344
13101345 auto page = _commonSetup ();
@@ -1367,6 +1402,10 @@ namespace TerminalAppLocalTests
13671402
13681403 void TabTests::TestPreviewDismissScheme ()
13691404 {
1405+ BEGIN_TEST_METHOD_PROPERTIES ()
1406+ TEST_METHOD_PROPERTY (L" Ignore" , L" True" ) // GH#19610 tracks re-enabling this test
1407+ END_TEST_METHOD_PROPERTIES ()
1408+
13701409 Log::Comment (L" Preview a color scheme. Make sure it's applied, then dismissed accordingly" );
13711410
13721411 auto page = _commonSetup ();
@@ -1415,6 +1454,10 @@ namespace TerminalAppLocalTests
14151454
14161455 void TabTests::TestPreviewSchemeWhilePreviewing ()
14171456 {
1457+ BEGIN_TEST_METHOD_PROPERTIES ()
1458+ TEST_METHOD_PROPERTY (L" Ignore" , L" True" ) // GH#19610 tracks re-enabling this test
1459+ END_TEST_METHOD_PROPERTIES ()
1460+
14181461 Log::Comment (L" Preview a color scheme, then preview another scheme. " );
14191462
14201463 Log::Comment (L" Preview a color scheme. Make sure it's applied, then committed accordingly" );
@@ -1482,6 +1525,10 @@ namespace TerminalAppLocalTests
14821525
14831526 void TabTests::TestClampSwitchToTab ()
14841527 {
1528+ BEGIN_TEST_METHOD_PROPERTIES ()
1529+ TEST_METHOD_PROPERTY (L" Ignore" , L" True" ) // GH#19610 tracks re-enabling this test
1530+ END_TEST_METHOD_PROPERTIES ()
1531+
14851532 Log::Comment (L" Test that switching to a tab index higher than the number of tabs just clamps to the last tab." );
14861533
14871534 auto page = _commonSetup ();
0 commit comments