node.js - 用 Create React App 开 Jest : Test suite failed to run - Unexpected token

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

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

我做的步骤

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

package.json中原来的test改成了这个

{
  "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

最佳答案

除非你弹出 create-react-app,否则你的根目录中既没有 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 复制该目录或编写您自己的安装文件。

关于node.js - 用 Create React App 开 Jest : Test suite failed to run - Unexpected token,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49427264/

相关文章:

javascript - 将函数调用的结果作为 javascript/node.js 中的函数进行调用

javascript - 在 pxp-ui 中,在表格中如何显示描述字段而不是 ID

javascript - 状态没有更新

reactjs - 运行测试时 Jest 绝对没有输出

javascript - 类型 'toMatchSnapshot' 上不存在属性 'Assertion'

node.js 获取所有 Mac 联系人

javascript - 序列化 - 类型错误 : Cannot read property 'define' of undefined

javascript - Gulp Git 先运行提交任务然后推送任务

javascript - ReactCSSTransitionGroup 不工作

javascript - 开 Jest 安全 cookie?