nicecode-v2/packages/meta/src/_util/__tests__/easings.test.ts
2024-01-16 17:35:23 +08:00

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]);
});
});