UNPKG
firstpackagenewman
Version:
latest (2.0.1)
2.0.1
2.0.0
1.0.1
1.0.0
Basic FizzBuzz
github.com/theMatthewNewman/firstPackageNewman
theMatthewNewman/firstPackageNewman
firstpackagenewman
/
tests
/
index.test.ts
5 lines
(4 loc)
•
157 B
text/typescript
View Raw
1
2
3
4
5
import
{fizzBuzz}
from
'../src/index'
;
test
(
'returns an array with ["1","2","Fizz"]'
,
() =>
{
expect
(
fizzBuzz
(
3
)).
toStrictEqual
([
"1"
,
"2"
,
"Fizz"
]) })