From: Jukka Kurkela Date: Tue, 26 May 2020 22:10:28 +0000 (+0300) Subject: Alter test to require fever iterations (#7426) X-Git-Tag: v3.0.0-beta.2~127 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ebccf225b9040a8c43993dcd003dca0b98a77348;p=thirdparty%2FChart.js.git Alter test to require fever iterations (#7426) --- diff --git a/test/specs/plugin.tooltip.tests.js b/test/specs/plugin.tooltip.tests.js index 724982f74..9ccf50b7a 100644 --- a/test/specs/plugin.tooltip.tests.js +++ b/test/specs/plugin.tooltip.tests.js @@ -995,7 +995,7 @@ describe('Core.Tooltip', function() { var tooltipPosition = meta.data[slice].tooltipPosition(); function recursive(left) { - chart.config.data.labels[slice] = chart.config.data.labels[slice] + 'l'; + chart.config.data.labels[slice] = chart.config.data.labels[slice] + 'XX'; chart.update(); afterEvent(chart, 'mouseout', function() { @@ -1025,7 +1025,7 @@ describe('Core.Tooltip', function() { // Trigger an event over top of the slice for (var slice = 0; slice < 2; slice++) { - testSlice(slice, 70); + testSlice(slice, 20); } });