中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

Jest框架中的自定義測試匹配器

發布時間:2024-08-28 11:33:48 來源:億速云 閱讀:81 作者:小樊 欄目:編程語言

在 Jest 框架中,你可以創建自定義測試匹配器來滿足特定的測試需求

  1. 首先,在項目根目錄下創建一個名為 customMatchers.ts(或 .js)的文件。這將包含我們的自定義測試匹配器實現。

  2. customMatchers.ts 文件中,編寫一個自定義測試匹配器函數。例如,我們可以創建一個名為 toBeWithinRange 的匹配器,用于檢查一個值是否在指定范圍內:

// customMatchers.ts
import { matcherHint, printExpected, printReceived } from 'jest-matcher-utils';

const toBeWithinRange = (received: number, floor: number, ceiling: number) => {
  const pass = received >= floor && received <= ceiling;

  const message = pass
    ? () =>
        `${matcherHint('.not.toBeWithinRange')}\n\n` +
        `Expected value not to be within range:\n` +
        `  floor: ${printExpected(floor)}\n` +
        `  ceiling: ${printExpected(ceiling)}\n` +
        `Received:\n` +
        `  ${printReceived(received)}`
    : () =>
        `${matcherHint('.toBeWithinRange')}\n\n` +
        `Expected value to be within range:\n` +
        `  floor: ${printExpected(floor)}\n` +
        `  ceiling: ${printExpected(ceiling)}\n` +
        `Received:\n` +
        `  ${printReceived(received)}`;

  return { message, pass };
};
  1. 接下來,我們需要將自定義測試匹配器添加到 Jest 的全局 expect 對象中。在項目根目錄下創建一個名為 setupTests.ts(或 .js)的文件,并添加以下內容:
// setupTests.ts
import { toBeWithinRange } from './customMatchers';

expect.extend({
  toBeWithinRange,
});
  1. 確保在 jest.config.js 文件中引用了 setupTests.ts 文件。如果你沒有這個文件,請創建一個并添加以下內容:
// jest.config.js
module.exports = {
  // ...其他配置
  setupFilesAfterEnv: ['./setupTests.ts'],
};
  1. 現在,你可以在測試文件中使用自定義的 toBeWithinRange 匹配器:
// myComponent.test.ts
import React from 'react';
import { render, screen } from '@testing-library/react';
import MyComponent from './MyComponent';

test('renders the correct value', () => {
  render(<MyComponent />);
  const valueElement = screen.getByText(/Value: /i);
  const value = parseInt(valueElement.textContent.split(' ')[1], 10);

  expect(value).toBeWithinRange(1, 100);
});

在這個示例中,我們創建了一個名為 toBeWithinRange 的自定義測試匹配器,用于檢查一個值是否在指定范圍內。然后,我們在 setupTests.ts 文件中將其添加到 Jest 的全局 expect 對象中,并在測試文件中使用它。

向AI問一下細節

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

AI

南开区| 浮梁县| 汝南县| 海兴县| 安泽县| 留坝县| 筠连县| 桐城市| 古浪县| 玉山县| 喀喇| 肥城市| 永济市| 湛江市| 洪洞县| 安义县| 遂宁市| 景泰县| 中方县| 越西县| 兴海县| 新晃| 布尔津县| 荃湾区| 宜君县| 三台县| 健康| 读书| 青铜峡市| 西昌市| 郓城县| 苏尼特右旗| 綦江县| 岳西县| 克拉玛依市| 聂拉木县| 津市市| 扎兰屯市| 平远县| 科尔| 苍梧县|