Skip to content

Commit

Permalink
Run the whole suite
Browse files Browse the repository at this point in the history
  • Loading branch information
pfumagalli committed Nov 8, 2024
1 parent f2f0411 commit df4f5a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workspaces/server/test/01-token.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { createToken } from '../../../support/utils'
import { verifyToken } from '../src/token'

describe('Token verification', () => {
fit('should not accept a token with the wrong length', () => {
it('should not accept a token with the wrong length', () => {
expect(() => verifyToken(''.padStart(63, 'A'), 'secret'))
.toThrowError(AssertionError, /^Invalid encoded token length \(63 != 64\)/)

Expand Down

0 comments on commit df4f5a9

Please sign in to comment.