Skip to content

Commit 6e45775

Browse files
committed
test: remove .only in jwt handler tests
1 parent 2c80fbf commit 6e45775

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/testJwtAuthHandler.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function publicKeyToJwk(publicKeyPem, kid = 'test-key') {
2121
return { ...jwk, kid };
2222
}
2323

24-
describe.only('JWT', () => {
24+
describe('JWT', () => {
2525
describe('getJwks', () => {
2626
it('should fetch JWKS keys from authority', async () => {
2727
const jwksResponse = { keys: [{ kid: 'test-key', kty: 'RSA', n: 'abc', e: 'AQAB' }] };

0 commit comments

Comments
 (0)