From 323073ec968a015377b351e22bf093b89a02168f Mon Sep 17 00:00:00 2001 From: Ely Lucas Date: Wed, 11 Dec 2019 09:51:03 -0700 Subject: [PATCH] chore(core): removing old test --- core/src/utils/animation/test/animation.spec.ts | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/core/src/utils/animation/test/animation.spec.ts b/core/src/utils/animation/test/animation.spec.ts index 27b408b939..21c885af55 100644 --- a/core/src/utils/animation/test/animation.spec.ts +++ b/core/src/utils/animation/test/animation.spec.ts @@ -397,18 +397,6 @@ describe('cubic-bezier conversion', () => { expect(getTimeGivenProgression(...equation, 1.32)).toEqual([]); expect(getTimeGivenProgression(...equation, -0.32)).toEqual([]); }) - - it('cubic-bezier(0.32, 0.72, 0, 1) (with out of bounds progression)', () => { - const equation = [ - new Point(0, 0), - new Point(0.05, 0.2), - new Point(.14, 1.72), - new Point(1, 1) - ]; - - expect(getTimeGivenProgression(...equation, 1.32)).toBeNaN(); - expect(getTimeGivenProgression(...equation, -0.32)).toBeNaN(); - }) }) });