工具集对比
| Karma 系 | jest 系 | |
|---|---|---|
| 测试运行环境 Test Runtime | Chrome/Firefox/Safari/Edge/IE | JSDOM + Node.js |
| 代码转译器 Transpiler | TypeScript | TypeScript |
| 测试运行工具 Test Runner | Karma | Jest |
| 测试框架 Test Framework | MOCHA/Jasmine | Jest |
| 断言库 Assertion Library | Chai/Expect.js | Jest |
| React 测试工具 React Test Utility | Enzyme/React-Testing-Library | Enzyme/React-Testing-Library |
性能比较
| Karma 系 | Jest 系 | |
|---|---|---|
| 启动&加载时间 | 4.7s | 0.6s |
| 编译&执行时间 | 13.8s | 27.4s |
| 总耗时 | 18.5s | 28.0s |