UNPKG
react-timer
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
0.0.13
0.0.12
0.0.11
0.0.10
0.0.6
0.0.3
0.0.2
0.0.1
A simple timer component
github.com/StevenIseki/react-timer
StevenIseki/react-timer
react-timer
/
src
/
__tests__
/
SecondsTohhmmss.spec.js
10 lines
(7 loc)
•
251 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
SecondsTohhmmss
from
'../SecondsTohhmmss'
test
(
'2 seconds is parsed correctly'
,
() =>
{
expect
(
SecondsTohhmmss
(
2
)).
toEqual
(
'00:00:02'
); })
test
(
'70 seconds is parsed correctly'
,
() =>
{
expect
(
SecondsTohhmmss
(
70
)).
toEqual
(
'00:01:10'
); })