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; } }