13 lines
376 B
JavaScript
13 lines
376 B
JavaScript
var jwt = require('../index');
|
|
var expect = require('chai').expect;
|
|
|
|
describe('noTimestamp', function() {
|
|
|
|
it('should work with string', function () {
|
|
var token = jwt.sign({foo: 123}, '123', { expiresIn: '5m' , noTimestamp: true });
|
|
var result = jwt.verify(token, '123');
|
|
expect(result.exp).to.be.closeTo(Math.floor(Date.now() / 1000) + (5*60), 0.5);
|
|
});
|
|
|
|
});
|