JavaScript Testing Framework: jest 发表于 2019-11-13 更新于 2021-07-02 阅读次数: Disqus: 资源 jest jest.config.js Configuring Jest jest安装 jest 1npm install --save-dev jest jest.config.js 12345678// For a detailed explanation regarding each configuration property, visit:// https://jestjs.io/docs/en/configuration.htmlmodule.exports = { collectCoverage: true, testEnvironment: 'node', testMatch: ['<rootDir>/__tests__/**/*spec.js']} package.json 12345{ "scripts": { "test": "jest", },} babel-jest bable-jest