Skip to content

Commit

Permalink
test: remove skip marker
Browse files Browse the repository at this point in the history
Going from types-only test to types & unexpected throw at initialization...
  • Loading branch information
Gabriel Fournier committed May 6, 2022
1 parent d1dbb0f commit c98ac1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/ts-definitions.tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const { x5cSingle } = require('../tests/keys.js');
const jwksRsa: typeof jwksRsaType = require('../src');

describe('typescript definition', () => {
const jwksHost = 'http://my-authz-server';
const jwksHost = 'http://localhost';

describe('hapiJwt2KeyAsync', () => {
it('should return a secret provider function', async () => {
Expand Down Expand Up @@ -37,7 +37,7 @@ describe('typescript definition', () => {
expect(key.kid).to.equal('NkFCNEE1NDFDNTQ5RTQ5OTE1QzRBMjYyMzY0NEJCQTJBMjJBQkZCMA');
});

it.skip('Types-Only Validation with express-jwt', () => {
it('Types-Only Validation with express-jwt', () => {
expressjwt6({
algorithms: ["RS256"],
secret: jwksRsa.expressJwtSecret({
Expand Down

0 comments on commit c98ac1f

Please sign in to comment.