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

fix: Hardcoded password

Dictation App committed on April 19, 2026Parent: 92ba2ce
1 file changed+2276581d37d7b1e6dcafbe2f90b1cc0fe9fa48bffe
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 = `test${Math.random().toString(36).slice(2)}`;
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