我花了几天的时间,用expo + typescript + jest + ts-jest来运行简单的react-native测试。我已经问了一个相关的问题here下面是我的项目设置:
- 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"]
};
};
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
因为我正在导入这样的React在我的文件:import React from 'react'
如果我导入像import * as React from 'react'
它的工作。
任何帮助将不胜感激,因为我已经花了几天在这个项目。
1条答案
按热度按时间lg40wkob1#
我遇到了完全相同的问题,并通过将我的
tsconfig.json
从至