fix(core): fix imports in local-session-invocation test

This commit is contained in:
Adam Weidman
2026-05-07 15:18:47 -04:00
parent a10284350f
commit 666d1d2d52
@@ -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';