This website requires JavaScript.
Explore
Help
Sign in
nebel
/
jest-hands-on
Watch
1
Star
0
Fork
You've already forked jest-hands-on
0
mirror of
https://github.com/kou029w/jest-hands-on.git
synced
2025-02-01 06:08:38 +00:00
Code
Issues
Projects
Releases
Wiki
Activity
b297d78575
jest-hands-on
/
templates
/
template
/
sum.test.js
6 lines
100 B
JavaScript
Raw
Normal View
History
Unescape
Escape
support esm
2022-02-18 13:17:48 +09:00
import
sum
from
"./sum"
;
create project
2021-07-27 10:54:21 +09:00
kerning text
2022-07-22 19:06:15 +09:00
test
(
"1と2の合計は3です"
,
(
)
=>
{
create project
2021-07-27 10:54:21 +09:00
expect
(
sum
(
1
,
2
)
)
.
toBe
(
3
)
;
}
)
;
Reference in a new issue
Copy permalink