获取组件文件中找不到的错误模块

发布于 2025-01-19 09:59:18 字数 633 浏览 0 评论 0原文

我正在尝试编写单元测试。我只是将组件文件导入到 test.file 中。当尝试运行测试时。它给出了在文件组件中找不到文件导入的错误模块,而在文件组件中导入工作正常。

组件文件 - example.tsx

import getConfig from '@/component/utils/appConfig'

jest.config.js

 module.exports = {moduleDirectories:["node_modules","src"]}

test.spec.js

    import example from '../../example.js'

describe('example',() => {
 it('render component file',()=> {
  const container = render(<example/>);
})})

在“npm run test”之后

,出现错误

无法从 example.tsx 中找到模块“@/component/utils/appConfig”

I'm trying to write unit test. I just import my component file inside test.file. When trying run test. It gives error module not found for file import in file component, while in file component the import is working fine.

Component file - example.tsx

import getConfig from '@/component/utils/appConfig'

jest.config.js

 module.exports = {moduleDirectories:["node_modules","src"]}

test.spec.js

    import example from '../../example.js'

describe('example',() => {
 it('render component file',()=> {
  const container = render(<example/>);
})})

after 'npm run test'

then, get error

cannot find module '@/component/utils/appConfig' from example.tsx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

狠疯拽 2025-01-26 09:59:18

我们通常使用导入的方式是基于相对路径。

。将文件移至当前目录。

的...

您的语句应该是这样

The way we usually use import is based on relative path.

.and .. are similar to how we use to navigate in terminal like cd .. to go out of directory and mv ~/file . to move a file to current directory.

Your Statement Should be like this...

import getConfig from './component/utils/appConfig'

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文