• 安装jest 模块
"babel-jest": "^21.0.2",
"jest": "^22.0.4",
"jest-serializer-vue": "^0.3.0",
"vue-jest": "^1.0.2",
  • 在项目根目录下面新建tests文件夹

使用jest做单元测试_json


里面jest.config.js文件,我配置的内容是这个,因为我跑单测使用node跑,所以testEnvironment为node。

module.exports = {
verbose: true,
testEnvironment: 'node'
};

utils.spec.js就是具体的单测文件了

// describe表示分组,分组里面一个个的用例
describe('测试基本方法', () => {
it('测试sum函数', () => {
expect(sum(1, 2)).toBe(3)
})
it('测试1+1=2', () => {
expect(1 + 1).toBe(2)
})
it ('对象比较', () => {
expect({name: 1}).toEqual({name: 1})
})
})

具体的测试写法可以看jest官方文档。

  • package.json里面配置script
"test": "jest --config tests/jest.config.js",
  • 然后执行​​npm run test​​ 这样单测就跑起来了。