I’m looking for some examples in dotnet where a workflow is awaiting a signal response.
In my instance the workflow is awaiting an API call from an external microservice to continue on to the next activity:
await Workflow.WaitConditionAsync(() => _created != null && _created.ProjectName == controllerSlug);
Once this is reached within the test it hangs awaiting this signal. Manual testing works fine, but I need a way to bump the signal to finish the last mocked activity.
I am using the WorkflowEnvironment.StartLocalAsync(); so I was hoping there was maybe some build in functionality to trigger the signal to move on. The docs haven’t been super helpful thus far on this.