附录 2:Testing Library 组件测试基础
The more your tests resemble the way your software is used, the more confidence they can give you.
Query 查找元素
测试组件的交互行为
最后更新于
The more your tests resemble the way your software is used, the more confidence they can give you.
最后更新于
type
No Match
1 Match
1+ Match
Await?
getBy
throw
return
throw
No
findBy
throw
return
throw
Yes
queryBy
null
return
throw
No
getAllBy
throw
array
array
No
findAllBy
throw
array
array
Yes
queryAllBy
[]
array
array
No