10

我正在尝试使用ts-jest运行 tsx 测试文件form.spec.tsx

form.spec.tsx导入编辑器React Quill和一些插件。

如何绕过SyntaxError: Unexpected identifier来自名为quill-mention that import的插件的错误Quill?该模块涉及form.spec.tsx.

我已经在 jest 配置中添加了 transformIgnorePatterns 字段,但是/node_modules/quill-mention/src/quill.mention.js["<rootDir>/node_modules/"]仍然存在这个问题

  ● 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: ["@", "#"],
                },
            }
        />
);

包.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

4

1 回答 1

16

问题是 Jest没有转换该文件。而在普通的 JS 中,import是无效的。您需要配置 Jest,以便它会转换该文件。

首先,将 更改transform为也处理带有扩展名的文件jsjsx(除了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 的 JSDom 环境有关。您可以在此处阅读有关如何解决此问题的信息:

用 Jest 测试 MutationObserver

您可能还需要考虑移至babel-jest+@babel/preset-typescript而不是使用ts-jest.

于 2019-10-27T17:51:03.783 回答