This website works better with JavaScript.
Explore
Help
Sign In
Ivan.Guo
/
fineui-start
forked from
fanruan/fineui-start
Watch
1
Star
0
Fork
You've already forked fineui-start
0
Code
Issues
Pull Requests
Projects
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
824 KiB
Branch:
master
feature
master
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from 'master'
${ noResults }
fineui-start
/
test
/
sum.test.ts
6 lines
103 B
Raw
Permalink
Normal View
History
Unescape
Escape
update
3 years ago
import
{
sum
}
from
'./sum'
;
test
(
'adds 1 + 2 to equal 3'
,
(
)
=
>
{
expect
(
sum
(
1
,
2
)
)
.
toBe
(
3
)
;
}
)
;