亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

目錄
What Jest and React Testing Library Do
Setting Up Jest and React Testing Library
Writing Unit Tests with Jest
Testing React Components with React Testing Library
Best Practices for Reliable Tests
Running Tests and Checking Coverage
首頁 web前端 H5教程 用開玩笑和React測試庫進(jìn)行單位測試JavaScript

用開玩笑和React測試庫進(jìn)行單位測試JavaScript

Jul 25, 2025 am 03:14 AM

Jest和React Testing Library是React應(yīng)用測試的黃金標(biāo)準(zhǔn),Jest提供測試運(yùn)行、斷言、_mock_和覆蓋率報告,React Testing Library則通過模擬用戶行為和可訪問性查詢來測試組件;若使用Create React App則已內(nèi)置二者,自定義配置需安裝jest、@testing-library/react等包並設(shè)置jest.config.js和Babel配置;單元測試用test()和expect()驗證函數(shù)邏輯,如formatPrice函數(shù)的格式化結(jié)果;組件測試通過render()渲染組件,screen查詢元素,fireEvent模擬事件,如點(diǎn)擊按鈕觸發(fā)onClick回調(diào);最佳實(shí)踐包括測試用戶行為而非實(shí)現(xiàn)細(xì)節(jié),優(yōu)先使用screen.getByRole等語義化查詢,避免使用data-testid,自動清理副作用,mock外部依賴,並用findBy或waitFor處理異步內(nèi)容;運(yùn)行npx jest執(zhí)行測試,加--watch啟用監(jiān)聽模式,加--coverage生成覆蓋率報告,最終確保代碼可靠、可維護(hù)。

Testing JavaScript applications — especially React components — is essential for building reliable, maintainable code. Two tools have become the gold standard in the modern React ecosystem: Jest for unit testing and React Testing Library (RTL) for component testing. Together, they provide a powerful, intuitive way to ensure your code works as expected.

Here's how to effectively use Jest and React Testing Library for unit and component testing in a React app.


What Jest and React Testing Library Do

Jest is a full-featured JavaScript testing framework developed by Facebook. It includes:

  • A test runner
  • Built-in assertion library
  • Mocking and spying capabilities
  • Code coverage reports
  • Fast, parallel test execution

React Testing Library is a lightweight solution for testing React components. It encourages good testing practices by:

  • Promoting testing user behavior over implementation details
  • Encouraging queries via accessible elements (like screen.getByText , screen.getByRole )
  • Being framework-agnostic (also works with Vue, Angular, etc.)

They work together seamlessly — Jest handles the test environment and assertions, while RTL renders components and simulates user interactions.


Setting Up Jest and React Testing Library

If you're using Create React App (CRA) , Jest and RTL are already included. You can start writing tests right away.

For custom setups (eg, with Vite, Webpack, or plain Node), install the required packages:

 npm install --save-dev jest @testing-library/react @testing-library/jest-dom @babel/preset-env @babel/preset-react

You'll also need a configuration file for Jest ( jest.config.js ) and Babel ( .babelrc ) if not using CRA.

Example jest.config.js :

 module.exports = {
  testEnvironment: 'jsdom',
  setupFilesAfterEnv: ['@testing-library/jest-dom'],
  transform: {
    '^. \\.(js|jsx)$': 'babel-jest',
  },
  moduleFileExtensions: ['js', 'jsx'],
};

The @testing-library/jest-dom adds custom matchers like .toBeInTheDocument() for more readable assertions.


Writing Unit Tests with Jest

Unit tests focus on individual functions or modules, not components.

Example: Testing a utility function

 // utils.js
export const formatPrice = (cents) => {
  return `$${(cents / 100).toFixed(2)}`;
};
 // utils.test.js
import { formatPrice } from './utils';

test('formats cents to USD', () => {
  expect(formatPrice(1000)).toBe('$10.00');
  expect(formatPrice(599)).toBe('$5.99');
});

Jest provides test() , expect() , and matchers like .toBe , .toEqual , .toContain , etc. You can also use describe() to group related tests.


Testing React Components with React Testing Library

RTL helps test components the way users interact with them — by querying the rendered output and simulating events.

Example: Testing a simple button

 // Button.jsx
import React from 'react';

export const Button = ({ onClick, children }) => {
  return <button onClick={onClick}>{children}</button>;
};
 // Button.test.jsx
import React from &#39;react&#39;;
import { render, screen, fireEvent } from &#39;@testing-library/react&#39;;
import { Button } from &#39;./Button&#39;;

test(&#39;calls onClick when button is clicked&#39;, () => {
  const handleClick = jest.fn();
  render(<Button onClick={handleClick}>Click Me</Button>);

  fireEvent.click(screen.getByText(&#39;Click Me&#39;));
  expect(handleClick).toHaveBeenCalledTimes(1);
});

Key RTL patterns:

  • render() — mounts your component in a test DOM
  • screen — provides access to query methods ( getByText , getByRole , etc.)
  • fireEvent — simulates DOM events like clicks or input changes
  • Always prefer screen.getByRole when possible for better accessibility and resilience

Best Practices for Reliable Tests

  1. Test behavior, not implementation

    • Avoid testing internal state or private methods
    • Focus on what the user sees and does
  2. Use semantic queries

     // Preferred
    screen.getByRole(&#39;button&#39;, { name: /submit/i });
    screen.getByLabelText(/email/i);
    
    // Less preferred
    screen.getByTestId(&#39;submit-btn&#39;); // Only when no accessible alternative
  3. Clean up side effects

    • Use afterEach(cleanup) if not using RTL v9 (cleanup is automatic now)
    • Clear mocks with jest.clearAllMocks() if needed
  4. Mock external dependencies

     jest.mock(&#39;./api&#39;);
  5. Wait for async content Use waitFor or findBy queries for asynchronous updates:

     const element = await screen.findByText(/loaded/i);

Running Tests and Checking Coverage

Run tests with:

 npx jest

Or with watch mode:

 npx jest --watch

Generate coverage report:

 npx jest --coverage

This creates a coverage/ folder with detailed HTML reports showing which lines are tested.


Basically, Jest and React Testing Library make testing React apps straightforward and user-focused. Write tests that reflect real usage, avoid brittle selectors, and leverage Jest's powerful mocking and assertion tools. With consistent practice, your app will be more resilient and easier to refactor.

以上是用開玩笑和React測試庫進(jìn)行單位測試JavaScript的詳細(xì)內(nèi)容。更多資訊請關(guān)注PHP中文網(wǎng)其他相關(guān)文章!

本網(wǎng)站聲明
本文內(nèi)容由網(wǎng)友自願投稿,版權(quán)歸原作者所有。本站不承擔(dān)相應(yīng)的法律責(zé)任。如發(fā)現(xiàn)涉嫌抄襲或侵權(quán)的內(nèi)容,請聯(lián)絡(luò)admin@php.cn

熱AI工具

Undress AI Tool

Undress AI Tool

免費(fèi)脫衣圖片

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅(qū)動的應(yīng)用程序,用於創(chuàng)建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費(fèi)的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱工具

記事本++7.3.1

記事本++7.3.1

好用且免費(fèi)的程式碼編輯器

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

禪工作室 13.0.1

禪工作室 13.0.1

強(qiáng)大的PHP整合開發(fā)環(huán)境

Dreamweaver CS6

Dreamweaver CS6

視覺化網(wǎng)頁開發(fā)工具

SublimeText3 Mac版

SublimeText3 Mac版

神級程式碼編輯軟體(SublimeText3)

熱門話題

Laravel 教程
1597
29
PHP教程
1488
72
將ARIA屬性與HTML5語義元素用於可訪問性 將ARIA屬性與HTML5語義元素用於可訪問性 Jul 07, 2025 am 02:54 AM

需要同時使用ARIA和HTML5語義標(biāo)籤的原因是:HTML5語義元素雖自帶可訪問性含義,但ARIA能補(bǔ)足語義、增強(qiáng)輔助技術(shù)識別能力。例如舊版瀏覽器支持不足、無原生標(biāo)籤的組件(如模態(tài)框)、需動態(tài)更新狀態(tài)時,ARIA提供更細(xì)粒度控制。 nav、main、aside等HTML5元素默認(rèn)對應(yīng)ARIArole,無需手動添加,除非需覆蓋默認(rèn)行為。應(yīng)加ARIA的情況包括:1.補(bǔ)充缺失的狀態(tài)信息,如用aria-expanded表示按鈕展開/收起狀態(tài);2.給非語義標(biāo)籤增加語義角色,如用div role實(shí)現(xiàn)選項卡並配

將CSS和JavaScript與HTML5結(jié)構(gòu)有效整合。 將CSS和JavaScript與HTML5結(jié)構(gòu)有效整合。 Jul 12, 2025 am 03:01 AM

HTML5、CSS和JavaScript應(yīng)通過語義化標(biāo)籤、合理加載順序與解耦設(shè)計高效結(jié)合。 1.使用HTML5語義化標(biāo)籤如、提升結(jié)構(gòu)清晰度與可維護(hù)性,利於SEO和無障礙訪問;2.CSS應(yīng)置於中,使用外部文件並按模塊拆分,避免內(nèi)聯(lián)樣式與延遲加載問題;3.JavaScript推薦放在前引入,使用defer或async異步加載以避免阻塞渲染;4.減少三者間強(qiáng)依賴,通過data-*屬性驅(qū)動行為、類名控制狀態(tài),統(tǒng)一命名規(guī)範(fàn)提升協(xié)作效率。這些方法能有效優(yōu)化頁面性能與團(tuán)隊協(xié)作。

HTML5視頻不在Chrome中播放 HTML5視頻不在Chrome中播放 Jul 10, 2025 am 11:20 AM

HTML5視頻在Chrome中不播放的常見原因包括格式兼容性、自動播放策略、路徑或MIME類型錯誤以及瀏覽器擴(kuò)展干擾。 1.視頻應(yīng)優(yōu)先使用MP4(H.264)格式,或提供多個標(biāo)籤適配不同瀏覽器;2.自動播放需添加muted屬性或通過用戶交互後用JavaScript觸發(fā).play();3.檢查文件路徑是否正確,並確保服務(wù)器配置了正確的MIME類型,本地測試建議使用開發(fā)服務(wù)器;4.廣告攔截插件或隱私模式可能阻止加載,可嘗試禁用插件、更換無痕窗口或更新瀏覽器版本以解決。

使用HTML5語義元素進(jìn)行頁面結(jié)構(gòu) 使用HTML5語義元素進(jìn)行頁面結(jié)構(gòu) Jul 07, 2025 am 02:53 AM

使用HTML5語義標(biāo)籤能提升網(wǎng)頁結(jié)構(gòu)清晰度、可訪問性和SEO效果。 1.語義標(biāo)籤如、、、、和使機(jī)器更易理解頁面內(nèi)容;2.各標(biāo)籤有明確用途:用於頂部區(qū)域,包裹導(dǎo)航鏈接,包含核心內(nèi)容,展示獨(dú)立文章,分組相關(guān)內(nèi)容,放置側(cè)邊欄,顯示底部信息;3.使用時需避免濫用、確保每頁僅一個、避免過度嵌套、合理使用和於區(qū)塊中。掌握這些要點(diǎn)能讓網(wǎng)頁結(jié)構(gòu)更規(guī)範(fàn)且實(shí)用。

使用html5` `標(biāo)籤嵌入視頻內(nèi)容。 使用html5` `標(biāo)籤嵌入視頻內(nèi)容。 Jul 07, 2025 am 02:47 AM

使用HTML5的標(biāo)籤嵌入網(wǎng)頁視頻,支持多格式兼容、自定義控件和響應(yīng)式設(shè)計。 1.基本用法:添加標(biāo)籤並設(shè)置src與controls屬性以實(shí)現(xiàn)播放功能;2.支持多格式:通過標(biāo)籤引入MP4、WebM、Ogg等不同格式提升瀏覽器兼容性;3.自定義外觀與行為:隱藏默認(rèn)控件並通過CSS與JavaScript實(shí)現(xiàn)樣式調(diào)整及交互邏輯;4.注意細(xì)節(jié):設(shè)置muted與autoplay實(shí)現(xiàn)自動播放,使用preload控制加載策略,結(jié)合width與max-width實(shí)現(xiàn)響應(yīng)式佈局,利用添加字幕增強(qiáng)可訪問性。

解釋html5`  vs` '元素。 解釋html5` vs` '元素。 Jul 12, 2025 am 03:09 AM

是塊級元素,適合佈局;是內(nèi)聯(lián)元素,適合包裹文字內(nèi)容。 1.獨(dú)占一行,可設(shè)置寬高和邊距,常用於結(jié)構(gòu)佈局;2.不換行,大小由內(nèi)容決定,適用於局部文本樣式或動態(tài)操作;3.選擇時應(yīng)根據(jù)內(nèi)容是否需獨(dú)立空間判斷;4.不可嵌套在內(nèi),不適合做佈局;5.優(yōu)先使用語義化標(biāo)籤以提升結(jié)構(gòu)清晰度與可訪問性。

使用HTML5地理位置API訪問用戶位置 使用HTML5地理位置API訪問用戶位置 Jul 07, 2025 am 02:49 AM

獲取用戶位置信息需先獲得授權(quán),使用HTML5的GeolocationAPI時,第一步是請求用戶許可,若用戶拒絕或未響應(yīng),應(yīng)處理錯誤並給出提示;成功授權(quán)後,Position對象包含coords(緯度、經(jīng)度等)和timestamp;可使用watchPosition監(jiān)聽位置變化,但需注意性能問題並及時清除監(jiān)聽器。 1.授權(quán)需用戶明確允許,觸發(fā)getCurrentPosition方法請求;2.拒絕或錯誤時處理error.code並提示用戶;3.成功後position.coords提供位置數(shù)據(jù);4.watc

將HTML5畫布的內(nèi)容保存為圖像。 將HTML5畫布的內(nèi)容保存為圖像。 Jul 08, 2025 am 02:13 AM

是的,你可以使用HTML5Canvas內(nèi)置的toDataURL()方法將其內(nèi)容保存為圖像。首先調(diào)用canvas.toDataURL('image/png')可將畫佈內(nèi)容轉(zhuǎn)換為PNG格式的base64字符串;若需JPEG或WebP格式,則可傳入對應(yīng)類型及質(zhì)量參數(shù)如canvas.toDataURL('image/jpeg',0.8)。接著可通過創(chuàng)建動態(tài)鏈接並觸發(fā)點(diǎn)擊事件實(shí)現(xiàn)下載:1.創(chuàng)建a元素;2.設(shè)置download屬性和href為圖像數(shù)據(jù);3.調(diào)用click()方法。注意此操作應(yīng)由用戶交互觸發(fā)。

See all articles