Skip to content

Commit fc71afd

Browse files
fix: use toBe instead of equals in tests
Co-authored-by: Copilot <[email protected]>
1 parent bb2198e commit fc71afd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/web/src/server/modules/auth/__tests__/auth.utils.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ describe('auth.utils', () => {
7575
codeChallenge: testCodeChallenge,
7676
}).token)
7777

78-
expect(new Set(tokens).size).equals(N)
78+
expect(new Set(tokens).size).toBe(N)
7979
})
8080

8181
it('should generate different tokens for the same email and codeChallenge on multiple calls', () => {

0 commit comments

Comments
 (0)