几天来,我一直在努力使用 expo + typescript + jest + ts-jest 运行简单的 react-native 测试。我已经在这里问了一个相关问题这 是我的项目的设置:
- tsconfig.json
{
"compilerOptions": {
"noEmit": true,
"lib": ["dom", "esnext"],
"jsx": "react-native",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"skipLibCheck": true
}
}
- babel.config.json
module.exports = function(api) {
api.cache(true);
return {
presets: ["babel-preset-expo"]
};
};
- jest.config.js (请参阅react-native + ts-jest 的官方 github 设置)
const { defaults: tsjPreset } = require("ts-jest/presets");
module.exports = {
...tsjPreset,
preset: "react-native",
transform: {
...tsjPreset.transform,
"\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
globals: {
"ts-jest": {
babelConfig: true
}
},
cacheDirectory: ".jest/cache"
};
我收到这个错误
ReferenceError: React is not defined
因为我在我的文件中导入这样的反应:
import React from 'react'
如果我像它一样导入import * as React from 'react'
。
任何帮助将不胜感激,因为我已经在这个项目中度过了几天。