test(cli): remove unsafe test assertions

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
YeonGyu-Kim
2026-05-12 14:21:39 +09:00
parent 9c6090a208
commit 7365163885
13 changed files with 118 additions and 118 deletions
+2 -2
View File
@@ -13,7 +13,7 @@ const createMockContext = (overrides: {
} = overrides
return {
client: {
client: testCoerce<RunContext["client"]>({
session: {
todo: mock(() => Promise.resolve({ data: todo })),
children: mock((opts: { path: { id: string } }) =>
@@ -21,7 +21,7 @@ const createMockContext = (overrides: {
),
status: mock(() => Promise.resolve({ data: statuses })),
},
} as unknown as RunContext["client"],
}),
sessionID: "test-session",
directory: "/test",
abortController: new AbortController(),