mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 05:29:37 +08:00
e91d25622b
* fix: signatures for tests * fix: remove unused * fix: test cases * fix: test cases
13 lines
315 B
TypeScript
13 lines
315 B
TypeScript
import { easeInOutCubic } from '../easings';
|
|
|
|
describe('Test easings', () => {
|
|
it('easeInOutCubic return value', () => {
|
|
const nums: number[] = [];
|
|
for (let index = 0; index < 5; index++) {
|
|
nums.push(easeInOutCubic(index, 1, 5, 4));
|
|
}
|
|
|
|
expect(nums).toEqual([1, 1.25, 3, 4.75, 5]);
|
|
});
|
|
});
|