UNPKG
njwt
Version:
latest (2.0.1)
2.0.1
2.0.0
1.2.0
1.1.0
1.0.0
0.4.1
0.4.0
0.3.2
0.3.1
0.3.0
0.2.3
0.2.2
0.2.1
0.2.0
0.0.1
0.0.0
JWT Library for Node.js
github.com/jwtk/njwt
jwtk/njwt
njwt
/
test
/
jwt-body.js
7 lines
•
217 B
JavaScript
View Raw
1
2
3
4
5
6
7
var
assert =
require
(
'assert'
);
var
nJwt =
require
(
'../'
);
describe
(
'JwtBody'
,
function
(
) {
it
(
'should construct itself if called without new'
,
function
(
){
assert
(nJwt.
JwtBody
()
instanceof
nJwt.
JwtBody
); }); });