Reconcile the staging rebase: finish rename-followed ports, async sel… #66
Annotations
2 errors
|
publish-npm
Process completed with exit code 1.
|
|
src/runtime/build.test.ts > commands parsed through commander > runs a workflow without input and keeps output selection distinct from rendering:
packages/sim-cli/src/runtime/build.test.ts#L775
AssertionError: expected 'Usage: sim workflows run [options] <w…' to contain 'blockName.path'
- Expected
+ Received
- blockName.path
+ Usage: sim workflows run [options] <workflowId>
+
+ Run a deployed workflow or execute saved state manually
+
+ Arguments:
+ workflowId Unique workflow identifier.
+
+ Options:
+ --input <json|@file> Trigger input as JSON (JSON, or @path /
+ @- to read a file or stdin)
+ --async Queue the run and return immediately
+ --execution-timeout-seconds <value> Requested server-side timeout for an
+ asynchronous run, in seconds. An upper
+ bound, not the effective timeout: the
+ run uses the smaller of this value and
+ the plan's execution timeout, so
+ requesting more than the plan allows
+ silently yields the plan timeout.
+ Rejected with `400` unless `async` is
+ true.
+ --select-output <value...> Return blockName.field values (e.g.
+ agent_1.content), or
+ childWorkflowId.blockName.field for a
+ child workflow (applies to every
+ invocation) — in blockOutputs on a sync
+ run, or from the streamed result with
+ --follow; missing fields are omitted.
+ Not available with --async
+ (space-separated, or @path / @- with one
+ value per line; @@value for a literal
+ leading @)
+ --include-file-base64 Inline eligible output files as base64
+ content. Rejected when `async` is true.
+ --no-include-file-base64 Send --include-file-base64 as false
+ --base64-max-bytes <value> Maximum total bytes of file content to
+ inline as base64, lowering but never
+ raising the server limit of 16 MiB.
+ Rejected when `async` is true.
+ --run-id <value> One-shot identifier for this run; NOT an
+ idempotency key — reusing a claimed
+ value fails with RUN_ID_CONFLICT instead
+ of replaying the first result, and a
+ fresh value starts another run
+ -h, --help display help for command
+
❯ src/runtime/build.test.ts:775:18
|