This website works better with JavaScript.
Explore
Help
Sign In
fanruan
/
fineui-start
Watch
2
Star
1
Fork
You've already forked fineui-start
8
Code
Issues
Pull Requests
Releases
Wiki
Activity
快速搭建fineui开发环境。
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28
Commits
2
Branches
0
Tags
539 KiB
Branch:
feature
feature
master
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from 'feature'
${ noResults }
fineui-start
/
test
/
sum.test.ts
6 lines
103 B
Raw
Permalink
Normal View
History
Unescape
Escape
KERNEL-9248 refactor: 重构
3 years ago
import
{
sum
}
from
'./sum'
;
test
(
'adds 1 + 2 to equal 3'
,
(
)
=
>
{
expect
(
sum
(
1
,
2
)
)
.
toBe
(
3
)
;
}
)
;