Skip to content

Commit

Permalink
style: apply linting rules in test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
tada5hi committed Feb 23, 2024
1 parent 153a924 commit 4f7dd78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/jsonwebtoken/__tests__/jsonwebtoken.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ test('should decode header', async (t) => {

const token = await sign(claims, secretKey, headers)

const header = decodeHeader(token);
t.is(header.algorithm, Algorithm.HS384);
const header = decodeHeader(token)
t.is(header.algorithm, Algorithm.HS384)
})

test('verify should return the decoded claims', async (t) => {
Expand Down

0 comments on commit 4f7dd78

Please sign in to comment.