首页
技术
登录
6mi
u
盘
搜
搜 索
技术
Jest 单元测试术语解析:describe、it、expect、test
Jest 单元测试术语解析:describe、it、expect、test
技术
2022-07-10
117
jest测试代码片段
describe
(
"number test"
,
(
)
=>
{
it
(
'1 is true'
,
(
)
=>
{
expect
(
1
)
.
toBeTruthy
(
)
}
)
test
(
'2 is true'
,
(
)
=>
{
expect
(
2
)
.
toBeTruthy
(
)
}
)
}
)
describe 描述, decribe会形成一个作用域it 断言expect 期望test 测试,类似it
转载请注明原文地址:https://ipadbbs.8miu.com/read-1652.html
最新回复
(
0
)