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 4a99cee commit 1415fd8Copy full SHA for 1415fd8
packages/test/src/test-integration-split-two.ts
@@ -664,8 +664,8 @@ test.serial('Handle from WorkflowClient.start terminates run after continue as n
664
});
665
await worker.runUntil(async () => {
666
await t.throwsAsync(handleFromGet.result(), { instanceOf: WorkflowContinuedAsNewError });
667
- await handleFromStart.terminate();
668
- await t.throwsAsync(handleFromStart.result(), { message: 'Workflow execution terminated' });
+ await handleFromStart.terminate('Expect workflow to terminate due to CAN');
+ await t.throwsAsync(handleFromStart.result(), { message: 'Expect workflow to terminate due to CAN' });
669
670
671
0 commit comments