From: Jukka Kurkela Date: Sun, 28 Feb 2021 13:49:34 +0000 (+0200) Subject: Remove the constantly failing test (#8538) X-Git-Tag: v3.0.0-beta.13~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b795151554c3f83a49f8f81c8e60459665869b2c;p=thirdparty%2FChart.js.git Remove the constantly failing test (#8538) --- diff --git a/test/specs/core.animations.tests.js b/test/specs/core.animations.tests.js index d501b8847..6b1d26fd1 100644 --- a/test/specs/core.animations.tests.js +++ b/test/specs/core.animations.tests.js @@ -172,51 +172,4 @@ describe('Chart.animations', function() { }, 250); }, 50); }); - - describe('default transitions', function() { - describe('hide', function() { - it('should keep dataset visible through the animation', function(done) { - let count = 0; - window.acquireChart({ - type: 'line', - data: { - labels: [0], - datasets: [ - {data: [1]}, - ] - }, - options: { - animation: { - duration: 0, - onProgress: (args) => { - if (!args.chart.isDatasetVisible(0) && args.currentStep / args.numSteps < 0.9) { - // while animating, visible should be truthly - // sometimes its not, thats why we check only up to 90% of the animation - expect(args.chart.getDatasetMeta(0).visible).toBeTruthy(); - count++; - } - }, - onComplete: (args) => { - if (args.chart.isDatasetVisible(0)) { - args.chart.hide(0); - } else { - // and when finished, it should be false - expect(args.chart.getDatasetMeta(0).visible).toBeFalsy(); - expect(count).toBeGreaterThan(0); - done(); - } - } - }, - transitions: { - hide: { - animation: { - duration: 100 - } - } - } - } - }); - }); - }); - }); });