javascript - jest.config.js 中的 `moduleNameMapper` 设置在 CircleCI 上不起作用

标签 javascript reactjs typescript jestjs circleci

我已经在 typescript 中使用我的 React-app 进行了测试,使用如下所示的 ts-jest。

import * as React from "react";
import * as renderer from "react-test-renderer";

import { ChartTitle } from "Components/chart_title";

describe("Component: ChartTitle", () => {
  it("will be rendered with no error", () => {
    const chartTitle = "My Chart 1";
    renderer.create(<ChartTitle title={chartTitle} />);
  });
});

它在我的本地环境中通过了,但在 CircleCI 中失败了。

 FAIL  __tests__/components/chart_title.tsx
  ● Test suite failed to run

    TypeScript diagnostics (customize using `[jest-config].globals.ts-jest.diagnostics` option):
    __tests__/components/chart_title.tsx:4:28 - error TS2307: Cannot find module 'Components/chart_title'.

    4 import { ChartTitle } from "Components/chart_title";                              
                                 ~~~~~~~~~~~~~~~~~~~~~~~~

这个 Components/moduleNameMapper 的别名表达式,我认为它只在 CircleCI 中不起作用。

jest --showConfig 选项告诉我本地和 CI 环境之间没有区别。

我的设置有问题吗?

应用程序/前端/jest.config.js

module.exports = {
  globals: {
    "ts-jest": {
      tsConfig: "tsconfig.json",
      diagnostics: true
    },
    NODE_ENV: "test"
  },
  moduleNameMapper: {
    "^Components/(.+)$": "<rootDir>/src/components/$1"
  },
  moduleDirectories: ["node_modules", 'src'],
  moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json"],
  transform: {
    "^.+\\.tsx?$": "ts-jest"
  },
  verbose: true
};

应用程序/前端/tsconfig.json

{
  "compilerOptions": {
    "baseUrl": "src",
    "outDir": "dist",
    "allowJs": true,
    "checkJs": true,
    "moduleResolution": "node",
    "sourceMap": true,
    "noImplicitAny": true,
    "target": "esnext",
    "module": "commonjs",
    "lib": ["es6", "dom"],
    "jsx": "react",
    "strict": false,
    "removeComments": true,
    "types": ["jest"]
  },
  "typeRoots": ["node_modules/@types"],
  "paths": {
    "Components/*": ["src/components/*"]
  },
  "include": ["src/**/*"],
  "exclude": ["node_modules", "__tests__"]
}

应用程序/前端/package.json

{
  "scripts": {
    "build": "webpack --mode development --watch",
    "build-production": "node_modules/.bin/webpack --mode production",
    "test": "jest",
    "lint": "npx eslint src/**/* __tests__/**/* --ext \".ts, .tsx\"",
  },
}

应用程序/.circleci/.config.yml

version: 2
jobs:
  build:
    ...
    steps:
      - run:
        name: run tests for frontend
        command: npm test -- -u
        working_directory: frontend

最佳答案

tsconfig-paths-jest 在 Jest >23 中不可用。对于当前的 Jest 26,我通过以下方式使其工作:https://kulshekhar.github.io/ts-jest/docs/getting-started/paths-mapping/

jest.config.js

const { pathsToModuleNameMapper } = require('ts-jest');
const { compilerOptions } = require('./tsconfig');

module.exports = {
  preset: 'ts-jest',
  testEnvironment: 'node',
  moduleNameMapper: pathsToModuleNameMapper(compilerOptions.paths, { prefix: '<rootDir>/src/' } )
};

tsconfig.json “编译器选项”

 "baseUrl": "./src",
 "paths": {            
  "@models/*": [ "./models/*" ],
  "@inputs/*": [ "./inputs/*" ],
  "@tests/*": [ "./__tests__/*" ],
  "@resolvers/*": [ "./resolvers/*" ],
  "@seeds/*": [ "./seeds/*" ],
  "@index": [ "./index.ts" ],
  "@ormconfig":[ "../ormconfig.ts" ]
  },

关于javascript - jest.config.js 中的 `moduleNameMapper` 设置在 CircleCI 上不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55488882/

相关文章:

javascript - 将过渡效果添加到 div 上的背景图像更改

javascript - 未捕获的 TypeError : Cannot read property 'nameOfCity' of null at App. 渲染

css - 图片不显示在 React JS 轮播 slider 中

typescript - 使用 Typescript 和 Jest 添加 i18n,出现 "All files must be modules when the ' --isolatedModules 错误”

javascript - 单击链接并设置超时

javascript - 显示和隐藏不隐藏的元素

javascript - 泛化 XPath

javascript - 为什么导出 withAlert(Alerts) 会导致错误,但 withAlert()(Alerts) 却有效?

angular - FormArray 动态形式angular

javascript - highchart 旭日百分比,不是相对百分比,而是取决于其他属性