fix: add missing workflow destructure in current-role test
CI / check (pull_request) Failing after 1m37s
CI / check (pull_request) Failing after 1m37s
The createMarker call used shorthand 'workflow' but the variable was not destructured from cmdThreadStart. Fixes #56
This commit is contained in:
@@ -324,7 +324,7 @@ describe("currentRole field", () => {
|
||||
try {
|
||||
const wf = join(tmpDir, "test-current-role.yaml");
|
||||
await writeFile(wf, SIMPLE_WORKFLOW_YAML, "utf8");
|
||||
const { thread } = await cmdThreadStart(storageRoot, wf, "test", tmpDir);
|
||||
const { thread, workflow } = await cmdThreadStart(storageRoot, wf, "test", tmpDir);
|
||||
const tid = thread as ThreadId;
|
||||
|
||||
await createMarker(storageRoot, {
|
||||
|
||||
Reference in New Issue
Block a user