91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

陕西省| 苗栗市| 阜宁县| 青州市| 收藏| 茶陵县| 醴陵市| 怀来县| 大理市| 建湖县| 营山县| 健康| 开封市| 通道| 遵化市| 缙云县| 西充县| 贺州市| 比如县| 呼和浩特市| 吕梁市| 青田县| 高清| 博野县| 贡山| 扎囊县| 嘉祥县| 金阳县| 沙洋县| 东明县| 轮台县| 汝城县| 昌黎县| 双牌县| 江华| 祁阳县| 阜城县| 册亨县| 磴口县| 淮阳县| 延长县|