您好,登錄后才能下訂單哦!
useImperativeHandle
是一個 React Hook,它允許你在使用 forwardRef
時自定義暴露給父組件的實例值。要使用 Jest 測試使用了 useImperativeHandle
的組件,你需要執(zhí)行以下步驟:
@testing-library/react
和 @testing-library/jest-dom
。useImperativeHandle
的組件。例如,我們創(chuàng)建一個名為 CustomInput
的組件,它接收一個 ref
并提供一個 focus
方法:import React, { forwardRef, useImperativeHandle, useRef } from 'react';
const CustomInput = forwardRef((props, ref) => {
const inputRef = useRef(null);
useImperativeHandle(ref, () => ({
focus: () => {
inputRef.current.focus();
},
}));
return<input ref={inputRef} type="text" />;
});
export default CustomInput;
CustomInput.test.js
,并導(dǎo)入相關(guān)庫和組件:import React from 'react';
import { render, fireEvent } from '@testing-library/react';
import '@testing-library/jest-dom/extend-expect';
import CustomInput from './CustomInput';
useImperativeHandle
的功能:test('should call focus method on CustomInput', () => {
const handleFocus = jest.fn();
const WrapperComponent = () => {
const inputRef = useRef(null);
const handleClick = () => {
inputRef.current.focus();
};
return (
<>
<CustomInput ref={inputRef} />
<button onClick={handleClick}>Focus Input</button>
</>
);
};
const { getByText, getByRole } = render(<WrapperComponent />);
const button = getByText('Focus Input');
const input = getByRole('textbox');
input.focus = handleFocus;
fireEvent.click(button);
expect(handleFocus).toHaveBeenCalledTimes(1);
});
在這個測試用例中,我們創(chuàng)建了一個包裝組件 WrapperComponent
,它將 CustomInput
的 ref
傳遞給按鈕的點擊事件。當(dāng)點擊按鈕時,它會調(diào)用 CustomInput
的 focus
方法。然后,我們使用 Jest 的 fireEvent
函數(shù)模擬點擊事件,并檢查 handleFocus
是否被調(diào)用。
現(xiàn)在,你可以運行 npm test
(或你配置的測試命令)來執(zhí)行此測試用例,并確保 useImperativeHandle
的功能正常工作。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。