Profile page UI and functionality implemented
This commit is contained in:
@@ -79,6 +79,13 @@ describe("createFlowStateSchema", () => {
|
||||
expect(r.success).toBe(false);
|
||||
});
|
||||
|
||||
it("rejects communityContext longer than 200 chars", () => {
|
||||
const r = createFlowStateSchema.safeParse({
|
||||
communityContext: "x".repeat(201),
|
||||
});
|
||||
expect(r.success).toBe(false);
|
||||
});
|
||||
|
||||
it("accepts communityStructureChipSnapshots with custom chip rows", () => {
|
||||
const r = createFlowStateSchema.safeParse({
|
||||
communityStructureChipSnapshots: {
|
||||
|
||||
Reference in New Issue
Block a user