Jest with Create React App:测试套件无法运行 - 意外的令牌

时间:2018-03-22 11:16:15

标签: node.js reactjs jestjs create-react-app yarnpkg

开箱即用的create-react-app与jest总是失败

我做的步骤

create-react-app cra-test
cd cra-test
yarn install

test中的原始package.json更改为此

{
  "name": "cra-test",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "react": "^16.2.0",
    "react-dom": "^16.2.0",
    "react-scripts": "1.1.1"
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "jest",
    "eject": "react-scripts eject"
  }
}

当我运行yarn test时,测试失败。这是输出

yarn run v1.1.0
$ jest
FAIL  src\App.test.js
  ● Test suite failed to run

    .../cra-test/src/App.test.js: Unexpected token (7:18)
         5 | it('renders without crashing', () => {
         6 |   const div = document.createElement('div');
      >  7 |   ReactDOM.render(<App />, div);
           |                   ^
         8 |   ReactDOM.unmountComponentAtNode(div);
         9 | });
        10 |

Test Suites: 1 failed, 1 total
Tests:       0 total
Snapshots:   0 total
Time:        3.413s, estimated 12s
Ran all test suites.
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.

我已经读过这可能是因为升级Jest导致它与create-react-app不兼容,但我没有这样做。

node --version && yarn --version && npm --version && create-react-app --version
v6.10.2
1.1.0
5.7.1
1.4.3

2 个答案:

答案 0 :(得分:0)

除非你弹出create-react-app,你的root目录中既没有babel配置也没有jest配置,因此jest不知道它必须转换源。所以你必须创建.babelrc:

{
 "presets": [
   "react-app"
  ]
}

和jest.config.js:

module.exports = {
  "collectCoverageFrom": [
    "src/**/*.{js,jsx,mjs}"
  ],
  "setupFiles": [
    "<rootDir>/config/polyfills.js"
  ],
  "testMatch": [
    "<rootDir>/src/**/__tests__/**/*.{js,jsx,mjs}",
    "<rootDir>/src/**/?(*.)(spec|test).{js,jsx,mjs}"
  ],
  "testEnvironment": "node",
  "testURL": "http://localhost",
  "transform": {
    "^.+\\.(js|jsx|mjs)$": "<rootDir>/node_modules/babel-jest",
    "^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
    "^(?!.*\\.(js|jsx|mjs|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
  },
  "transformIgnorePatterns": [
    "[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs)$"
  ],
  "moduleNameMapper": {
    "^react-native$": "react-native-web"
  },
  "moduleFileExtensions": [
    "web.js",
    "mjs",
    "js",
    "json",
    "web.jsx",
    "jsx",
    "node"
  ]
}

执行npm run eject后可以找到的这些配置。

应该安装

babel-preset-react-app,因为jest config引用它。另外,请注意,jest config提到了config目录,它是create-react-app的一部分。这意味着没有它就无法工作,因此您需要从create-react-app复制该目录或编写自己的安装文件。

答案 1 :(得分:0)

我不知道原因,但我暂时解决了这个问题。 {{1}} Bibliography

相关问题