- 博客(3)
- 收藏
- 关注
原创 Jest 入门(四)Snapshot Testing
Jest入门(四)Snapshot Testing官方docanother article 官方doc 官方链接 another article 参考链接
2019-03-19 15:58:00
1466
翻译 Jest 入门(二),常用expect方法
Jest 入门二,常用expect方法1.基础语法2.比较null,undefined,true,false3.比较number4.比较string5.比较Arrays6.更多expect用法 1.基础语法 test('two plus two is four', () => { expect(2 + 2).toBe(4); }); expect()返回被称作“expectation”...
2019-03-18 15:46:50
5414
翻译 Jest入门(一)
Jest入门总结(一) 1.安装 yarn add --dev jest 或者 npm install --save-dev jest 2.简单用法 jest 是使用JavaScript的单元测试框架。 比如有一个被测js文件 sum.js,有一个被测function function sum(a, b) { return a + b; } module.exports = sum; 2...
2019-03-18 15:17:16
940
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人