课程章节: 第5章 组件测试
主讲老师:张轩
课程内容:
今天学习的内容包括:
5-1 为什么要有测试
5-2 通用测试框架 Jest 出场
课程收获:
纯函数最适合去做单元测试。有固定的输入就有固定的输出
测试金字塔
ui/sercice/unit
单元测试,独立不相关
jest 通用测试框架
快速安全/覆盖率/mocking/错误报告
测试断言
test('测试用例名字',() => {
expect().toBe()
expect().not.toBe()
toBeTruthy()
toBefalsy()
toBeGreaterThan()
toBeLessThan()
// 对比对象的值
toEqual()
})
npx jest jest.test.js --watch