Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/test/src/test-integration-split-two.ts
Original file line number Diff line number Diff line change
Expand Up @@ -664,8 +664,8 @@ test.serial('Handle from WorkflowClient.start terminates run after continue as n
});
await worker.runUntil(async () => {
await t.throwsAsync(handleFromGet.result(), { instanceOf: WorkflowContinuedAsNewError });
await handleFromStart.terminate();
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' });
});
});

Expand Down