refactor: ts in packages/*/tests use extensionless import

This commit is contained in:
imccyu
2026-06-17 23:21:42 +08:00
parent 846ea4dd60
commit 279e9f17eb
24 changed files with 29 additions and 29 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ import { mkdtemp, rm } from 'node:fs/promises'
import { tmpdir } from 'node:os'
import { join } from 'node:path'
import { PROTOCOL_VERSION } from '@agentclientprotocol/sdk'
import { makeBridgeHarness, textResponse, type BridgeHarness, type CapturedUpdate } from './harness.ts'
import { makeBridgeHarness, textResponse, type BridgeHarness, type CapturedUpdate } from './harness'
/** Text of the agent_message_chunk updates scoped to one session id. */
function messageTextFor(updates: { sessionId?: string; update: CapturedUpdate }[], sessionId: string): string {