UNPKG
number-zero
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
just 0
github.com/scarfunk/number-zero
scarfunk/number-zero
number-zero
/
test.js
8 lines
(6 loc)
•
205 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
var
assert
=
require
(
'assert'
); describe(
'The object is exported correctly'
,
function
()
{ it(
'The exported object should be equal to 0'
,
function
()
{
assert
.equal(
require
(
'./index'
),
0
); }); });