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

溫馨提示×

溫馨提示×

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

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

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

山阴县| 石城县| 榆树市| 德阳市| 小金县| 郧西县| 建瓯市| 大田县| 和田市| 长汀县| 宁蒗| 全南县| 景泰县| 临湘市| 皮山县| 手游| 徐汇区| 若尔盖县| 广灵县| 平陆县| 抚远县| 阿城市| 鲁山县| 永康市| 永泰县| 禄劝| 大安市| 长泰县| 平邑县| 宁武县| 五峰| 布尔津县| 冕宁县| 武宁县| 兴山县| 正宁县| 南城县| 赤城县| 陆河县| 孟津县| 岑巩县|