From 206bc6c4d921dce72060b17ed2033b64dc028936 Mon Sep 17 00:00:00 2001 From: Paul Marbach Date: Tue, 16 Dec 2025 14:49:32 -0500 Subject: [PATCH] disable storybook test due to false positive --- .../RadialGauge/RadialGauge.story.tsx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages/grafana-ui/src/components/RadialGauge/RadialGauge.story.tsx b/packages/grafana-ui/src/components/RadialGauge/RadialGauge.story.tsx index 416594a2901..acd25b91421 100644 --- a/packages/grafana-ui/src/components/RadialGauge/RadialGauge.story.tsx +++ b/packages/grafana-ui/src/components/RadialGauge/RadialGauge.story.tsx @@ -299,6 +299,24 @@ export const Examples: StoryFn = (args) => { Examples.parameters = { controls: { include: ['barWidthFactor', 'value'] }, + a11y: { + config: { + rules: [ + { + id: 'scrollable-region-focusable', + selector: 'body', + enabled: false, + }, + // NOTE: this is necessary due to a false positive with the filered svg glow in one of the examples. + // The color-contrast in this component should be accessible! + { + id: 'color-contrast', + selector: 'text', + enabled: false, + }, + ], + }, + }, }; export const MultiSeries: StoryFn = (args) => {