gpt4 book ai didi

javascript - jest.mock 不适用于 Javascript 测试和 Typescript 模块

转载 作者:行者123 更新时间:2023-12-02 15:50:28 30 4
gpt4 key购买 nike

我模拟的 utilFunction 没有被使用,并且向工厂函数添加日志显示它从未被调用。我已经尝试搜索 jest.mock not working with relative paths 和 jest.mock not being called for Typescript 认为它可能与 JS 测试和 TS 源代码的混合或源代码中使用的不同模块路径有关对比测试代码。

正在测试的代码:

// src/foo/fooModule.ts
import { utilFunction } from '../util'

export const foo = () => {
return utilFunction()
}

测试代码:

// test/fooModule.test.js
const { foo } = require('../src/foo/fooModule')

jest.mock('../src/util', () => {
return { utilFunction: () => 'mocked' };
});

describe('fooModule tests', () => ...)

最佳答案

jest.mock 调用需要移动到导入上方:

// test/fooModule.test.js
jest.mock('../src/util', () => {
return { utilFunction: () => 'mocked' };
});

const { foo } = require('../src/foo/fooModule')


describe('fooModule tests', () => ...)

在此之前,我最后一次使用 Jest 的经历是在一个项目中,该项目的测试也是用 Typescript 编写的,并且使用了 babel-jestbabel-jest 包括 babel-jest-hoist它会自动将 Jest 模拟提升到任何导入之上,所以我以前不必担心排序问题。

关于javascript - jest.mock 不适用于 Javascript 测试和 Typescript 模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72663254/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com