UNPKG
excellentexport
Version:
latest (3.9.11)
3.9.11
3.9.10
3.9.9
3.9.8
3.9.7
3.9.6
3.9.4
3.9.3
3.9.2
3.9.1
3.9.0
3.8.1
3.8.0
3.7.3
3.7.2
3.7.1
3.7.0
3.6.0
3.5.0
3.4.3
3.4.2
3.4.0
3.3.0
3.2.1
3.2.0
3.0.0
2.1.0
2.0.3
2.0.2
2.0.0
1.5.0
Client side JavaScript export to Excel or CSV
jordiburgos.com
jmaister/excellentexport
excellentexport
/
test
/
simple.test.ts
11 lines
(8 loc)
•
265 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
const
assert
=
require
(
'assert'
); describe(
'Array'
,
function
()
{ describe(
'#indexOf()'
,
function
()
{ it(
'should return -1 when the value is not present'
,
function
()
{
assert
.equal(
-1
, [
1
,
2
,
3
].indexOf(
4
)); }); }); });