亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Jest測試React Hooks的useRef

發布時間:2024-08-27 20:29:37 來源:億速云 閱讀:84 作者:小樊 欄目:編程語言

jest@testing-library/react 是兩個常用的庫,用于測試 React 組件

  1. 首先,確保已安裝所需的依賴項:
npm install --save-dev jest @testing-library/react @testing-library/jest-dom
  1. 創建一個名為 MyComponent.js 的文件,其中包含使用 useRef 的 React 組件:
import React, { useRef } from 'react';

const MyComponent = () => {
  const inputRef = useRef(null);

  const handleClick = () => {
    inputRef.current.focus();
  };

  return (
    <div>
     <input ref={inputRef} type="text" />
     <button onClick={handleClick}>Focus input</button>
    </div>
  );
};

export default MyComponent;
  1. 在同一目錄下創建一個名為 MyComponent.test.js 的文件,編寫針對 MyComponent 的測試用例:
import React from 'react';
import { render, fireEvent, screen } from '@testing-library/react';
import '@testing-library/jest-dom/extend-expect';
import MyComponent from './MyComponent';

describe('MyComponent', () => {
  it('should focus the input field when the button is clicked', () => {
    render(<MyComponent />);

    const input = screen.getByRole('textbox');
    const button = screen.getByText('Focus input');

    expect(input).not.toHaveFocus();

    fireEvent.click(button);

    expect(input).toHaveFocus();
  });
});
  1. package.json 中添加測試腳本:
{
  "scripts": {
    "test": "jest"
  }
}
  1. 最后,運行測試:
npm test

這將運行 MyComponent 的測試用例,并檢查點擊按鈕后輸入框是否獲得焦點。如果一切正常,您應該會看到類似于以下的測試結果:

PASS  ./MyComponent.test.js
  MyComponent
    ? should focus the input field when the button is clicked (28 ms)
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乌恰县| 荆州市| 平江县| 宁夏| 兰坪| 鹤岗市| 公主岭市| 石家庄市| 察隅县| 广丰县| 渭南市| 苍梧县| 青阳县| 昂仁县| 汽车| 黄骅市| 南澳县| 西盟| 繁峙县| 龙海市| 黔江区| 日喀则市| 宽甸| 新营市| 志丹县| 克拉玛依市| 长寿区| 松滋市| 广灵县| 红桥区| 错那县| 龙游县| 彰化市| 紫金县| 新丰县| 恭城| 上思县| 凌海市| 渭源县| 乐平市| 芦山县|