File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
packages/respect-core/src Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -57,9 +57,9 @@ function composeJsonSteps(
5757 step : Step | WorkflowExecutionResult ,
5858 workflowId : string ,
5959 ctx : TestContext
60- ) : StepExecutionResult | WorkflowExecutionResult {
60+ ) : StepExecutionResult | WorkflowExecutionResultJson {
6161 if ( 'executedSteps' in step ) {
62- return step as WorkflowExecutionResult ;
62+ return step as WorkflowExecutionResultJson ;
6363 }
6464
6565 const publicStep = ctx . $workflows [ workflowId ] . steps [ step . stepId ] ;
Original file line number Diff line number Diff line change @@ -239,7 +239,7 @@ export interface WorkflowExecutionResult {
239239}
240240
241241export type WorkflowExecutionResultJson = Omit < WorkflowExecutionResult , 'executedSteps' > & {
242- executedSteps : ( StepExecutionResult | WorkflowExecutionResult ) [ ] ;
242+ executedSteps : ( StepExecutionResult | WorkflowExecutionResultJson ) [ ] ;
243243 status : ExecutionStatus ;
244244} ;
245245
You can’t perform that action at this time.
0 commit comments