5

我正在使用 Babel Jest 来转换我的代码以进行测试。我不知道如何使用相对于项目根目录的路径。

例如,如果在一个测试文件中我导入一个模块:/imports/ui/myModuleJest throws an error

Cannot find module 
'/Users/me/dev/myProject/Users/me/dev/myProject/imports/ui/myModule' from 'test.jsx'`

但是,如果我导入一个具有如下相对路径的模块:../../ui/myModule它可以工作。

我的.babelrc

{
  "plugins": [
    "transform-decorators-legacy",
    "transform-class-properties",
    "babel-root-slash-import"
  ],
  "presets": [
    "es2015",
    "react",
    "stage-0"
  ],
  "env": {
    "test": {
      "plugins": [
        "transform-decorators-legacy",
        "transform-class-properties",
        "babel-root-slash-import"
      ],
      "presets": [
        "es2015",
        "react",
        "stage-0"
      ]
    }
  }
}

我的笑话配置是:

  "jest": {
    "roots": ["<rootDir>/imports/tests/jest"]
  },
4

1 回答 1

0

例如,您可以使用moduleNameMapper配置选项。

// package.json
{
  "jest": {
    "roots": ["<rootDir>/imports/tests/jest"]
  },
  "moduleNameMapper": [
    "^ui/(.*)$": "<rootDir>/imports/ui/$1"
  ]
}

// test.jsx
import myModule from 'imports/ui/myModule';

SO的相关答案:Testing with Jest and Webpack aliases

jest来自官方文档的另一个例子: https ://facebook.github.io/jest/docs/en/webpack.html#configuring-jest-to-find-our-files

于 2018-05-11T06:58:21.467 回答