使用Jest模拟简单的内部函数,以便在渲染的React组件中使用



我有一个简单的 React 应用程序,其中包含以下App.jsApp.test.jsutils.js文件:

应用.js

import React from 'react';
import { randomNameGenerator } from './utils.js';
import './App.css';
function App() {
return (
<div>
{randomNameGenerator()}
</div>
);
}
export default App;

应用测试.js

import React from 'react';
import { render } from '@testing-library/react';
import '@testing-library/jest-dom/extend-expect'
import App from './App';
it('allows Jest method mocking', () => {
const { getByText } = render(<App />);
expect(getByText("Craig")).toBeInTheDocument()
});

实用工具.js

export function randomNameGenerator() {
return Math.floor((Math.random() * 2) + 1) == 1 ? 'Steve' : 'Bill';
}

这是一个简单的例子,但我试图完成的是对randomNameGenerator()函数的 Jest 模拟,只为该特定的 Jest 测试返回"Craig"

我遵循了各种各样的教程/指南,但找不到任何有用的东西 - 我得到的最接近的(通过"感觉"(是这个(在App.test.js年(,它没有效果:

jest.doMock('./utils', () => {
const originalUtils = jest.requireActual('./utils');
return {
__esModule: true,
...originalUtils,
randomNameGenerator: jest.fn(() => {
console.log('## Returning mocked typing duration!');
return 'Craig';
}),
};
})

它失败的方式是预期的:

Unable to find an element with the text: Craig. This could be because the text is broken up by multiple elements. In this case, you can provide a function for your text matcher to make your matcher more flexible.
<body>
<div>
<div>
Steve
</div>
</div>
</body>
6 | it('allows Jest method mocking', () => {
7 |   const { getByText } = render(<App />);
>  8 |   expect(getByText("Craig")).toBeInTheDocument()
|          ^
9 | });

您可以通过调用jest.mock来模拟模块,然后将其导入,然后在测试中调用mockImplementation来设置正确的返回值。

import React from 'react';
import { render } from '@testing-library/react';
import '@testing-library/jest-dom/extend-expect'
import App from './App';
import { randomNameGenerator } from "./utils";
jest.mock('./utils.js', () => ({ 
randomNameGenerator: jest.fn()
}));
describe('test', () => {
it('allows Jest method mocking 1', () => {
randomNameGenerator.mockImplementation(() => "Craig");
const { getByText } = render(<App />);
expect(getByText("Craig")).toBeInTheDocument()
});
it('allows Jest method mocking 2', () => {
randomNameGenerator.mockImplementation(() => "Not Craig");
const { getByText } = render(<App />);
expect(getByText("Not Craig")).toBeInTheDocument()
});
});

最新更新