@@ -272,6 +272,7 @@ export const Histogram: React.FC<HistogramProps> = ({
272272 isVisible = { tooltipsTrigger === 'manual' ? false : undefined }
273273 >
274274 < Button
275+ data-test = "histogram-double-left"
275276 icon = { < AngleDoubleLeftIcon /> }
276277 variant = "plain"
277278 className = { `metrics-content-button ${ loading ? 'loading' : '' } ` }
@@ -285,6 +286,7 @@ export const Histogram: React.FC<HistogramProps> = ({
285286 isVisible = { tooltipsTrigger === 'manual' ? false : undefined }
286287 >
287288 < Button
289+ data-test = "histogram-single-left"
288290 icon = { < AngleLeftIcon /> }
289291 variant = "plain"
290292 className = { `metrics-content-button ${ loading ? 'loading' : '' } ` }
@@ -303,6 +305,7 @@ export const Histogram: React.FC<HistogramProps> = ({
303305 isVisible = { tooltipsTrigger === 'manual' ? false : undefined }
304306 >
305307 < Button
308+ data-test = "histogram-single-right"
306309 icon = { < AngleRightIcon /> }
307310 variant = "plain"
308311 className = { `metrics-content-button ${ loading ? 'loading' : '' } ` }
@@ -315,6 +318,7 @@ export const Histogram: React.FC<HistogramProps> = ({
315318 isVisible = { tooltipsTrigger === 'manual' ? false : undefined }
316319 >
317320 < Button
321+ data-test = "histogram-double-right"
318322 icon = { < AngleDoubleRightIcon /> }
319323 variant = "plain"
320324 className = { `metrics-content-button ${ loading ? 'loading' : '' } ` }
@@ -331,6 +335,7 @@ export const Histogram: React.FC<HistogramProps> = ({
331335 isVisible = { tooltipsTrigger === 'manual' ? false : undefined }
332336 >
333337 < Button
338+ data-test = "histogram-zoom-out"
334339 icon = { < SearchMinusIcon /> }
335340 variant = "plain"
336341 className = { `metrics-content-button ${ loading ? 'loading' : '' } ` }
@@ -346,6 +351,7 @@ export const Histogram: React.FC<HistogramProps> = ({
346351 isVisible = { tooltipsTrigger === 'manual' ? false : undefined }
347352 >
348353 < Button
354+ data-test = "histogram-zoom-in"
349355 icon = { < SearchPlusIcon /> }
350356 variant = "plain"
351357 className = { `metrics-content-button ${ loading ? 'loading' : '' } ` }
0 commit comments