Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 151 Bytes

拿到mock函数接收到的参数.md

File metadata and controls

11 lines (7 loc) · 151 Bytes

解答

答案

第一个参数

mockFn = jest.fn();
expect(mockFn.mock.calls[0][0]).toBe(`paragraph-extend-render-${boxId}`);