Commit4c512ceunknown_key
Merge pull request #15 from ccantynz-alt/gatetest/auto-fix-1776590685143
Merge pull request #15 from ccantynz-alt/gatetest/auto-fix-1776590685143 GateTest: Fix 4 issues across 3 files
1 file changed+1−14c512cec55c54f86f20171aa6aad7c1c690aabae
1 changed file+1−1
Modifiedsrc/__tests__/auth.test.ts+1−1View fileUnifiedSplit
@@ -8,7 +8,7 @@ import {
88
99describe("auth utilities", () => {
1010 it("should hash and verify passwords", async () => {
11 const password = Math.random().toString(36).slice(-10);
11 const password = `test${Math.random().toString(36).slice(2)}`;
1212 const hash = await hashPassword(password);
1313
1414 expect(hash).toBeTruthy();
1515