gpt4 book ai didi

javascript - 尽管 tsconfig 包含 `jsx` 选项,但 Jest 拒绝解析 JSX

转载 作者:行者123 更新时间:2023-11-30 14:07:52 27 4
gpt4 key购买 nike

我正在尝试使用 Jest 测试用 typescript 编写的 React 组件,但是当我运行测试时出现此错误:

Cannot use JSX unless the '--jsx' flag is provided.

该项目需要多个tsconfig文件(一个用于节点服务器,另一个用于客户端源),因此项目结构如下:

/root
package.json
jest.config.js
/src
tsconfig.json
/server
tsconfig.json

我目前只尝试在 src 目录中运行测试。我认为问题是 ts-jest 没有加载正确的 tsconfig 文件,但是在浏览了他们的文档、问题并在 slack channel 上询问之后,我找不到任何方法来传递 --jsx 标志到 ts-jest 或指定要使用的 tsconfig。

这是我的配置文件的内容:

/root/jest.config.js

module.exports = {
roots: [
'<rootDir>/src',
],
transform: {
'^.+\\.tsx?$': 'ts-jest',
},
testRegex: '/__tests__/.*\\.test\\.tsx?$',
moduleFileExtensions: [
'ts',
'tsx',
'js',
'jsx',
'json',
'node',
],
setupFilesAfterEnv: ['jest-enzyme'],
testEnvironment: 'enzyme',
};

/root/src/tsconfig.json

{
"compilerOptions": {
"plugins": [
{
"name": "typescript-styled-plugin"
}
],
"target": "es2018",
"lib": ["es2018", "dom"],
"jsx": "react",
"moduleResolution": "node",
"allowJs": true,
"esModuleInterop": true,
"skipLibCheck": true,
"sourceMap": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"noImplicitReturns": true,
"outDir": "../dist/src",
"baseUrl": ".",
"typeRoots": ["./types", "../node_modules/@types"]
}
}

还有我在package.json中的相关依赖

"@types/jest": "^24.0.10",
"@types/enzyme": "^3.9.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"jest": "^24.3.1",
"jest-environment-enzyme": "^7.0.2",
"jest-enzyme": "^7.0.2",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.2",
"typescript": "^3.3.3",
"typescript-styled-plugin": "^0.13.0"

失败的测试(位于/root/src/pages/__tests__/index.test.tsx)

import React from 'react';
import IndexPage from '../index';
import { shallow } from 'enzyme';

describe('pages/index', () => {
test('Should render without error', () => {
const wrapper = shallow(<IndexPage/>);
});
});

我在这里做错了什么?

编辑:

同时,我通过将 root/src/tsconfig.json 移动到 root/tsconfig.json 使其正常工作。如果我想向服务器添加测试,这将不起作用,但我会使用它,直到出现更好的东西。

最佳答案

ts-jest会寻找<roodDir>/tsconfig.json默认情况下。

如果你想指定一个特定的配置文件,使用global/ts-jest/tsconfig选项:

//  package.json/jest or jest.config.json
{
"globals": {
"ts-jest": {
"tsConfig": "<your tsconfig.json file path>"
}
}
}

引用:https://kulshekhar.github.io/ts-jest/user/config/#options

关于javascript - 尽管 tsconfig 包含 `jsx` 选项,但 Jest 拒绝解析 JSX,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55070538/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com