简体   繁体   English

无法运行 JEST 测试

[英]Unable to run JEST test

I'm facing an issue when I try to import something using require() function in jest test file.当我尝试在 jest 测试文件中使用 require() 函数导入某些内容时遇到问题。

script2.test.js脚本2.test.js

const fetch = require('node-fetch');

it('test function', () => {
  expect(4).toEqual(4);
});

Package.json包.json

{
  "name": "jest-test",
  "version": "1.0.0",
  "description": "",
  "type": "module",
  "scripts": {
    "test": "jest --watchAll"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "@babel/cli": "^7.15.7",
    "@babel/core": "^7.15.8",
    "@babel/plugin-transform-async-to-generator": "^7.14.5",
    "@babel/preset-env": "^7.15.8",
    "jest": "^27.3.1"
  },
  "dependencies": {
    "node-fetch": "^3.0.0"
  },
  "jest": {
    "transform": {
      "^.+\\.(js|jsx)$": "babel-jest"
    }
  }
}

babel.config.cjs babel.config.cjs

module.exports = {presets: ['@babel/preset-env']}

I'm getting following errors when I run the test using npm test使用 npm test 运行测试时出现以下错误

FAIL  ./script2.test.js
  ● Test suite failed to run

    Jest encountered an unexpected token

    Jest failed to parse a file. This happens e.g. when your code or its dependencies use non-standard JavaScript syntax, or when Jest is not configured to support such syntax. 

    Out of the box Jest supports Babel, which will be used to transform your files into valid JS based on your Babel configuration.


    Details:
    
        C:\work\jest-udemy\node_modules\node-fetch\src\index.js:9
        import http from 'http';
        ^^^^^^
    
        SyntaxError: Cannot use import statement outside a module
    
        > 1 | const fetch = require('node-fetch');
        |                   ^

I'm new to JEST, any help is much appreciated.我是 JEST 的新手,非常感谢任何帮助。 My Node version is 14.17.3 Thanks you.我的 Node 版本是 14.17.3 谢谢。

It seems that one still needs to jump through the hoops to make jest work with ESM.似乎仍然需要跳槽才能与 ESM 开玩笑。

In package.json change your script to:package.json 中,将您的脚本更改为:

"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watchAll"

And in script2.test.js use import :script2.test.js 中使用import

import fetch from 'node-fetch';

PS This was tested with node 14.15.1 PS 这是用节点 14.15.1 测试的

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM