Commit76581d3
fix: Hardcoded password
1 file changed+2−276581d37d7b1e6dcafbe2f90b1cc0fe9fa48bffe
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 = `test${Math.random().toString(36).slice(2)}`;
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