diff --git a/packages/core/src/agents/local-session-invocation.test.ts b/packages/core/src/agents/local-session-invocation.test.ts index 9294aae379..ce5967ddcf 100644 --- a/packages/core/src/agents/local-session-invocation.test.ts +++ b/packages/core/src/agents/local-session-invocation.test.ts @@ -5,15 +5,16 @@ */ import { describe, it, expect, vi, beforeEach } from 'vitest'; -import type { - SubagentProgress , +import { AgentTerminateMode, + SubagentActivityErrorType, + SUBAGENT_REJECTED_ERROR_PREFIX, + SUBAGENT_CANCELLED_ERROR_MESSAGE, + type SubagentProgress, type LocalAgentDefinition, type AgentInputs, type SubagentActivityEvent, - SubagentActivityErrorType, - SUBAGENT_REJECTED_ERROR_PREFIX, - SUBAGENT_CANCELLED_ERROR_MESSAGE } from './types.js'; +} from './types.js'; import { LocalSessionInvocation } from './local-session-invocation.js'; import { LocalSubagentSession } from './local-subagent-protocol.js'; import { makeFakeConfig } from '../test-utils/config.js';