@iiko/jest-react-config-legacy
Version:
jest + react17.x 简单封装
55 lines (40 loc) • 1.09 kB
Markdown
# @iiko/jest-react-config-legacy
jest + react17.x 简单封装
## 安装
```
npm install --save-dev @iiko/jest-react-config-legacy
```
## jest.config.js 配置
项目根目录下创建 jest.config.js 文件
```js
const { compilerOptions } = require("./tsconfig.json");
const {
default: defineConfig,
pathsToModuleNameMapper,
} = require("@iiko/jest-react-config-legacy");
module.exports = defineConfig({
// 从正则表达式到模块名称或模块名称数组的映射,允许用单个模块存根替换资源
moduleNameMapper: {
...pathsToModuleNameMapper(compilerOptions.paths, {
prefix: "<rootDir>/",
}),
},
});
```
## tsconfig.json 配置
类型配置让 ts 识别 jest 的全局变量
```json
{
"compilerOptions": {
"types": ["@iiko/jest-react-config-legacy/types"]
}
}
```
## umi3.x 问题
umi3.x 用的 jest@26.x, 我们用的 jest@27.x, 执行 `npx jest` 默认会找 jest@26.x
package.json 强制使用 jest@27.x
```json
"resolutions": {
"@jest/core": "27.5.1"
},
```