首页 >web前端 >js教程 >如何在 Jest 中有效模拟 ES6 模块导入?

如何在 Jest 中有效模拟 ES6 模块导入?

Mary-Kate Olsen
Mary-Kate Olsen原创
2024-10-24 00:24:02693浏览

How to Effectively Mock ES6 Module Imports in Jest?

在 Jest 中模拟 ES6 模块导入

在测试 ES6 模块时,经常需要模拟导入的模块来隔离和断言特定功能。在这种情况下,Jest 提供了几种用于模拟模块导入的选项。

传统方法包括分别使用 jest.mock 或 jest.spyOn 模拟单个命名导出或默认导出。然而,对于更复杂的场景,存在更灵活的方法。

使用 import 进行模拟 *

利用 import * 允许模拟模块中的所有导出,包括命名导出和默认导出。以下是使用此方法修改后的代码:

<code class="js">// dependency.js
export const doSomething = (y) => console.log(y);
export default (y) => console.log(y);

// myModule.js
import * as dependency from './dependency';

export default (x) => {
  dependency.doSomething(x * 2);
  dependency.default(x * 2);
};

// myModule-test.js
import myModule from '../myModule';
import * as dependency from '../dependency';

describe('myModule', () => {
  it('calls the dependency with double the input', () => {
    dependency.doSomething = jest.fn();
    dependency.default = jest.fn();

    myModule(2);

    expect(dependency.doSomething).toBeCalledWith(4);
    expect(dependency.default).toBeCalledWith(4);
  });
});</code>

在此示例中,我们将 import { doSomething } 替换为 import * 作为依赖项来导入所有命名导出。然后我们直接使用 jest.fn() 改变导入的对象以模拟导出的函数。

以上是如何在 Jest 中有效模拟 ES6 模块导入?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn