0%

JavaScript Testing Framework: jest

资源

jest.config.js

jest

安装 jest

1
npm install --save-dev jest

jest.config.js

1
2
3
4
5
6
7
8
// For a detailed explanation regarding each configuration property, visit:
// https://jestjs.io/docs/en/configuration.html

module.exports = {
collectCoverage: true,
testEnvironment: 'node',
testMatch: ['<rootDir>/__tests__/**/*spec.js']
}

package.json

1
2
3
4
5
{
"scripts": {
"test": "jest",
},
}

babel-jest