Skip to content

Commit 4f7dd78

Browse files
committed
style: apply linting rules in test suite
1 parent 153a924 commit 4f7dd78

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/jsonwebtoken/__tests__/jsonwebtoken.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ test('should decode header', async (t) => {
4040

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

43-
const header = decodeHeader(token);
44-
t.is(header.algorithm, Algorithm.HS384);
43+
const header = decodeHeader(token)
44+
t.is(header.algorithm, Algorithm.HS384)
4545
})
4646

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

0 commit comments

Comments
 (0)