test(hashline): 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:23:13 +09:00
parent fb135d047c
commit 2fc1786077
3 changed files with 10 additions and 12 deletions
@@ -16,11 +16,11 @@ function makeHangingClient(): {
hangCount.value += 1
return new Promise<never>(() => {})
}
const client = {
const client = testCoerce<PluginInput["client"]>({
session: {
get: sessionGet,
},
} as unknown as PluginInput["client"]
})
return { hangCount, client }
}