Create Community stage implemented

This commit is contained in:
adilallo
2026-04-14 09:22:03 -06:00
parent a0de78c020
commit f8255bc2c7
73 changed files with 1105 additions and 392 deletions
+7
View File
@@ -71,6 +71,13 @@ describe("createFlowStateSchema", () => {
const r = createFlowStateSchema.safeParse({ title: "x".repeat(600) });
expect(r.success).toBe(false);
});
it("rejects communitySaveEmail longer than 320 chars", () => {
const r = createFlowStateSchema.safeParse({
communitySaveEmail: "x".repeat(321),
});
expect(r.success).toBe(false);
});
});
describe("putDraftBodySchema", () => {