We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33765fe commit 12eddf6Copy full SHA for 12eddf6
pkg/workflows/wasm/host/standard_test.go
@@ -73,6 +73,9 @@ func TestStandardErrors(t *testing.T) {
73
}
74
75
func TestStandardCapabilityCallsAreAsync(t *testing.T) {
76
+ // This test expects basic action's PerformAction to be called twice asynchronously and the results concatenated.
77
+ // To ensure the calls are actually async, the mock will block the first call until the second call is made.
78
+ // The first call sets InputThing to true, the second to false.
79
t.Parallel()
80
mockExecutionHelper := NewMockExecutionHelper(t)
81
mockExecutionHelper.EXPECT().GetWorkflowExecutionID().Return("id")
0 commit comments