From 8d35b3c40334481b8dd442e854336fedc0c22504 Mon Sep 17 00:00:00 2001 From: Alexander Bulychev Date: Thu, 30 Nov 2023 18:58:45 +0400 Subject: [PATCH] Skip broken map test (#3060) Co-authored-by: Alexander Bulychev --- testing/common.test.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/testing/common.test.js b/testing/common.test.js index 3e771111e96..4b5d80e624e 100644 --- a/testing/common.test.js +++ b/testing/common.test.js @@ -129,6 +129,9 @@ const getTestSpecificSkipRules = (testName) => { 'Scheduler', 'PivotGrid', ]; + const BROKEN_THIRD_PARTY_SCRIPTS_COMPONENT = [ + 'Map', + ]; getDemoPaths(approach).forEach((demoPath, index) => { if (!shouldRunTestAtIndex(index + 1) || !existsSync(demoPath)) { return; } @@ -157,6 +160,9 @@ const getTestSpecificSkipRules = (testName) => { if (process.env.STRATEGY === 'accessibility' && ACCESSIBILITY_UNSUPPORTED_COMPONENTS.indexOf(widgetName) > -1) { return; } + if (BROKEN_THIRD_PARTY_SCRIPTS_COMPONENT.indexOf(widgetName) > -1) { + return; + } if (process.env.CI_ENV && process.env.DISABLE_DEMO_TEST_SETTINGS !== 'ignore') { if (mergedTestSettings.ignore) { return; } }