Jest
四个钩子函数
- beforeAll
1 | // beforeAll(() => { |
- beforeEach
1 | // beforeEach(() => { |
- afterEach
1 | // afterEach(() => { |
- afterAll
1 | // afterAll(() => { |
介绍几个匹配器
methods | desc |
---|---|
toBe | 完全匹配 === |
toEqual1 | 只要能容一样即可 |
参考:https://jspang.com/detailed?id=63#toc336
注意:
1 | // 若makeL是一个方法 则错误 |
- 本文标题:Jest
- 本文作者:sonder
- 创建时间:2020-06-07 20:36:09
- 本文链接:https://sonderss.github.io/2020/06/07/Jest/
评论