我正在设置一个配置,以便在一个 create-response-app + type escript 应用程序(我已经被弹出来了)中运行我的测试。我用的是 jest + 酵素。在 tsconfig.json 中,我设置了 baseUrl='./src'
,这样在导入模块时就可以使用绝对路径。例如,在我的一个文件中,这是一个典型的 import 语句:
import LayoutFlexBoxItem from 'framework/components/ui/LayoutFlexBoxItem';
您可以看到路径是绝对的(来自/src 文件夹) ,而不是相对的。
当我在调试模式(yarn start
)下运行时,这种方法可以很好地工作
但是当我运行我的测试(yarn test
)时,我得到这个错误:
Cannot find module 'framework/components/Navigation' from 'index.tsx'
所以看起来 jest 无法解析这个绝对路径,尽管我已经在 tsconfig.json 中设置了它。这是我的 tsconfig.json:
{
"compilerOptions": {
"outDir": "dist",
"module": "esnext",
"target": "es5",
"lib": ["es6", "dom"],
"sourceMap": true,
"allowJs": true,
"jsx": "react",
"moduleResolution": "node",
"rootDir": "src",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"baseUrl": "./src"
},
"exclude": [
"node_modules",
"build",
"dist",
"config",
"scripts",
"acceptance-tests",
"webpack",
"jest",
"src/setupTests.ts"
]
}
现在我可以看到在我的项目的根目录下有一个生成的 tsconfig.test.json
。这是用于测试的 ts 配置。以下是它的内容:
{
"extends": "./tsconfig.json",
"compilerOptions": {
"module": "commonjs"
}
}
如您所见,这里的“模块”是 commonjs
,而在缺省配置中它是 esnext
。这是原因之一吗?
是否有人能够用 Jest 和绝对路径对他的打印稿项目进行单元测试?还是已知的窃听器?由于我已经从默认配置中弹出,是否有一些设置要放入我的 webpack 配置中?
谢谢你的意见和建议。