安装jest时未定义describe

问题描述 投票:1回答:1

我安装了jest v24.7.1in我的项目:

npm install jest -D

然后我开始编写一些测试文件,但是我得到了这些eslint错误:

'describe' is not defined. eslint (no-undef)
'it' is not defined. eslint (no-undef)
'expect' is not defined. eslint (no-undef)

eslintrc.js:

module.exports = {


env: {
    browser: true,
    es6: true
  },
  extends: ["airbnb", "prettier", "prettier/react"],
  globals: {
    Atomics: "readonly",
    SharedArrayBuffer: "readonly"
  },
  parserOptions: {
    ecmaFeatures: {
      jsx: true
    },
    ecmaVersion: 2018,
    sourceType: "module"
  },
  plugins: ["react"],
  rules: {}
};

我应该添加其他规则或插件来解决这个问题吗?

jestjs eslint eslint-config-airbnb eslintrc
1个回答
1
投票

.eslintrc.js文件中添加以下行

"env": {
    "jest": true
}

要么

{
  "plugins": ["jest"]
},
"env": {
  "jest/globals": true
}

有关更多详细信息,请查看here,它也定义相同。

希望你安装eslint-plugin-jest包。如果没有亲切的通过Documentation

Configuring ESLint的所有配置细节。

© www.soinside.com 2019 - 2024. All rights reserved.