mirror of
https://github.com/youzan/vant.git
synced 2025-10-16 08:00:34 +00: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);
|
|
});
|