我正在尝试使用ts-jest
运行tsx测试文件form.spec.tsx
。
form.spec.tsx
导入React Quill
编辑器和某些插件。
我如何绕过来自quill-mention的插件的SyntaxError: Unexpected identifier
错误,该插件导入Quill
? form.spec.tsx
中涉及此模块。
我已经在玩笑的配置中将["<rootDir>/node_modules/"]
添加到了transformIgnorePatterns字段,但是这个问题从/node_modules/quill-mention/src/quill.mention.js仍然存在
● Test suite failed to run
/home/web/node_modules/quill-mention/src/quill.mention.js:1
({"Object.<anonymous>":function(module,exports,require,__dirname,__filename,global,jest){import Quill from 'quill';
^^^^^
SyntaxError: Unexpected identifier
1 | import React from "react"
> 2 | import "quill-mention";
| ^
form.spec.tsx:
import {render, RenderResult, waitForElement} from "react-testing-library";
import ReactQuill, {Quill} from 'react-quill';
import "quill-mention";
const renderResult = render(
<ReactQuill
modules={
{
mention: {
allowedChars: /^[A-Za-z\sÅÄÖåäö]*$/,
mentionDenotationChars: ["@", "#"],
},
}
/>
);
package.json
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.jest.json"
},
"window": {}
},
"testRegex": "(/watch/web/__tests__/.*|(\\.|/)(test|spec))\\.(jsxxxx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"modulePaths": [
"<rootDir>"
],
"moduleNameMapper": {
".+\\.(css|styl|less|sass|scss)$": "identity-obj-proxy",
".+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/FileMock.js"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/"
]
}
tsconfig.jest.json:
{
"compilerOptions": {
"jsx": "react",
"module": "commonjs",
"target": "es6",
"moduleResolution": "node",
"removeComments": true,
"allowSyntheticDefaultImports": true,
"noImplicitAny": false,
"experimentalDecorators": true,
"noLib": false,
"declaration": false,
"emitDecoratorMetadata": true,
"lib": ["es6", "dom"],
"types": ["jest","reflect-metadata"],
"inlineSources":true,
"skipLibCheck": true,
"esModuleInterop": true
},
"exclude": [
"node_modules"
]
}
有人说allowJs: true
可以解决它,但是不起作用。我所有的测试都失败,说JavaScript heap out of memory
。
答案 0 :(得分:6)
问题在于Jest正在 不是 转换该文件。在纯JS中,import
是无效的。您需要配置Jest,以便它将转换该文件。
首先,将transform
更改为也处理扩展名为js
或jsx
的文件(除了ts
文件:)
"jest": {
"transform": {
"^.+\\.(ts|js)x?$": "ts-jest"
},
接下来,您需要将目录列入白名单,因此Jest会对其进行转换。这样会跳过转换node_modules
目录中的quill-mention
以外的所有文件。
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!(quill-mention)/)"
]
这应该克服quill-mention
的问题。现在它应该因ReferenceError: MutationObserver is not defined
而失败,这是另一个问题,与它所使用的Jest的JSm环境有关。您可以在此处了解如何解决该问题:
Testing MutationObserver with Jest
您可能还想考虑移动到babel-jest
+ @babel/preset-typescript
而不是使用ts-jest
。