fix(core): update
This commit is contained in:
parent
0ebd3c9872
commit
ceb48fd45e
@ -21,6 +21,8 @@ tap.test('should create a new jwt', async () => {
|
|||||||
|
|
||||||
tap.test('should verify a jwt', async () => {
|
tap.test('should verify a jwt', async () => {
|
||||||
const data = await smartjwtInstance.verifyJWTAndGetData(testJwt);
|
const data = await smartjwtInstance.verifyJWTAndGetData(testJwt);
|
||||||
|
// tslint:disable-next-line: no-unused-expression
|
||||||
|
expect(data).to.not.be.null;
|
||||||
console.log(data);
|
console.log(data);
|
||||||
console.log(smartjwtInstance.publicKey.toPemString());
|
console.log(smartjwtInstance.publicKey.toPemString());
|
||||||
});
|
});
|
||||||
@ -44,6 +46,6 @@ tap.test('should verify a jwt on another instance', async () => {
|
|||||||
secondSmartJwtInstance.setPublicPemKeyForVerification(smartjwtInstance.publicKey.toPemString());
|
secondSmartJwtInstance.setPublicPemKeyForVerification(smartjwtInstance.publicKey.toPemString());
|
||||||
const result = secondSmartJwtInstance.verifyJWTAndGetData(testJwt);
|
const result = secondSmartJwtInstance.verifyJWTAndGetData(testJwt);
|
||||||
console.log(result);
|
console.log(result);
|
||||||
})
|
});
|
||||||
|
|
||||||
tap.start();
|
tap.start();
|
||||||
|
Loading…
Reference in New Issue
Block a user