From 2972012059c3002fc28cd5ebf83207c1460c4d3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20M=C3=BCller?= Date: Tue, 16 Jan 2024 18:41:30 +0100 Subject: [PATCH] use edge case for better coverage --- cypress/integration/rendering/xyChart.spec.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cypress/integration/rendering/xyChart.spec.js b/cypress/integration/rendering/xyChart.spec.js index a47c87987..4a29bf67f 100644 --- a/cypress/integration/rendering/xyChart.spec.js +++ b/cypress/integration/rendering/xyChart.spec.js @@ -330,8 +330,8 @@ describe('XY Chart', () => { title "Basic xychart with multiple datasets" x-axis "Relevant categories" [category1, "category 2", category3, category4] y-axis Animals 0 --> 160 - bar "dogs" [40, 20, 40, 30] - bar "cats" [20, 40, 50, 30] + bar "dogs" [0, 20, 40, 30] + bar "cats" [20, 40, 0, 30] bar "birds" [30, 60, 50, 30] `, {} @@ -346,8 +346,8 @@ describe('XY Chart', () => { title "Basic xychart with multiple datasets" x-axis "Relevant categories" [category1, "category 2", category3, category4] y-axis Animals 0 --> 160 - bar "dogs" [40, 20, 40, 30] - bar "cats" [20, 40, 50, 30] + bar "dogs" [0, 20, 40, 30] + bar "cats" [20, 40, 0, 30] bar "birds" [30, 60, 50, 30] `, {}