Node Guidebook
概览
引擎
系统
网络
服务端应用
工具应用
Github
Node Guidebook
Node 完全知识体系
概览
引擎
系统
网络
服务端应用
工具应用
Github
编译
Babel
社区精选
测试
测试原理
Jest
Jest - Asynchronous
Jest - Global Functions
Jest - 匹配器
Jest - 模拟函数
Jest - 通用
Enzyme
编译
Babel 工作原理
Pratise
Verdaccio
生命周期
Enzyme
Shallow Rendering:将组件渲染成虚拟 DOM 对象,但是只渲染第一层,不渲染所有子组件,所以处理速度非常快,并且它不需要 DOM 环境
生命周期
React 生命周期:
componentWillMount
componentDidMount
componentWillReceiveProps
shouldComponentUpdate
componentWillUpdate
componentDidUpdate
componentWillUnmount
通过断言即可测试
expect
(
wrapper
.
state
(
)
.
xxx
)
;