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
+9
View File
@@ -46,4 +46,13 @@ describe("flowSteps", () => {
// @ts-expect-error — invalid step id
expect(getStepIndex("bogus")).toBe(-1);
});
it("places community-structure before community-context and community-size (Figma order)", () => {
expect(getStepIndex("community-structure")).toBe(2);
expect(getStepIndex("community-context")).toBe(3);
expect(getStepIndex("community-size")).toBe(4);
expect(getNextStep("community-name")).toBe("community-structure");
expect(getNextStep("community-structure")).toBe("community-context");
expect(getNextStep("community-context")).toBe("community-size");
});
});