Skip to content

Commit 3529431

Browse files
vitorbariclaude
andcommitted
fix(cli): convert syncers test fixture actions to ordered array
Same CLI fix as before, missed in the previous sweep — the FlowDefinitionSyncer's validate tests use a top-level VALID_FLOW constant with the legacy dict shape that the regenerated zod schema now rejects. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 7e3fcb7 commit 3529431

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/cli/tests/unit/lib/sync/syncers.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ const VALID_FLOW = {
126126
user_schema:
127127
"https://raw.githubusercontent.com/zitadel/nextgen/refs/heads/main/api/openapi/endpoints/schemas/human-user.yaml",
128128
purposes: { login: "identifier" },
129-
steps: [{ name: "identifier", fields: [], actions: {}, gates: {} }],
129+
steps: [{ name: "identifier", fields: [], actions: [], gates: {} }],
130130
};
131131

132132
describe("FlowDefinitionSyncer", () => {

0 commit comments

Comments
 (0)