mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
10 lines
172 B
TypeScript
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);
|
|
});
|