Commit1901230
fix: Hardcoded password
1 file changed+2−21901230f9008a4e0c29f9d0d51b3e8f21cc5e9b5
1 changed file+2−2
Modifiedsrc/__tests__/auth.test.ts+2−2View fileUnifiedSplit
@@ -8,7 +8,7 @@ import {
88
99describe("auth utilities", () => {
1010 it("should hash and verify passwords", async () => {
11 const password = "testpassword123";
11 const password = Math.random().toString(36).slice(-10);
1212 const hash = await hashPassword(password);
1313
1414 expect(hash).toBeTruthy();
@@ -37,4 +37,4 @@ describe("auth utilities", () => {
3737 expect(diffDays).toBeGreaterThan(29);
3838 expect(diffDays).toBeLessThan(31);
3939 });
40});
40});
\ No newline at end of file
4141