UNPKG
string-fizz
Version:
latest (1.0.0)
1.0.0
The string "fizz"
github.com/fizzbuzz-npm/string-fizz
fizzbuzz-npm/string-fizz
string-fizz
/
test.js
7 lines
(5 loc)
•
120 B
JavaScript
View Raw
1
2
3
4
5
6
7
const
test =
require
(
'ava'
);
const
fizz =
require
(
"./index.js"
);
test
(
'fizz'
,
t
=>
{ t.
is
(fizz,
"fizz"
); });