Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
Commit1901230

fix: Hardcoded password

Dictation App committed on April 19, 2026Parent: 1eb155a
1 file changed+221901230f9008a4e0c29f9d0d51b3e8f21cc5e9b5
1 changed file+2−2
Modifiedsrc/__tests__/auth.test.ts+2−2View fileUnifiedSplit
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();
3737 expect(diffDays).toBeGreaterThan(29);
3838 expect(diffDays).toBeLessThan(31);
3939 });
40});
40});
\ No newline at end of file
4141