1
0
mirror of https://gitee.com/vant-contrib/vant.git synced 2025-04-06 03:57:59 +08:00
2021-11-11 11:08:02 +08:00

10 lines
172 B
TypeScript

import { raf, cancelRaf } from '../src/utils';
test('raf', async () => {
const spy = jest.fn();
raf(spy);
expect(spy).toHaveBeenCalledTimes(1);
cancelRaf(1);
});