From b795151554c3f83a49f8f81c8e60459665869b2c Mon Sep 17 00:00:00 2001 From: Jukka Kurkela Date: Sun, 28 Feb 2021 15:49:34 +0200 Subject: [PATCH] Remove the constantly failing test (#8538) --- test/specs/core.animations.tests.js | 47 ----------------------------- 1 file changed, 47 deletions(-) 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 - } - } - } - } - }); - }); - }); - }); });