Skip to content
Merged
Changes from 1 commit
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 apps/vscode-e2e/src/suite/subtasks.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ suite("Roo Code Subtasks", function () {
const parentAskCount = asks[parentTaskId]?.length ?? 0

await api.clearCurrentTask()
api.resumeTask(parentTaskId)
await api.resumeTask(parentTaskId)
await waitFor(() => hasToolAsk(parentTaskId, "newTask", parentAskCount))
assert.ok(
!asks[parentTaskId]?.slice(parentAskCount).some(({ ask }) => ask === "resume_task"),
Expand All @@ -235,7 +235,7 @@ suite("Roo Code Subtasks", function () {
const childAskCount = asks[childTaskId!]?.length ?? 0

await api.clearCurrentTask()
api.resumeTask(childTaskId!)
await api.resumeTask(childTaskId!)
await waitFor(() => hasToolAsk(childTaskId!, "finishTask", childAskCount))
assert.ok(
!asks[childTaskId!]
Expand Down
Loading