From eec9c3b69478feb4f8542d121dd1d8d3ee32e212 Mon Sep 17 00:00:00 2001 From: Tianyi Cui <53024+tianyicui@users.noreply.github.com> Date: Tue, 8 Sep 2026 00:37:58 +0800 Subject: [PATCH] test(snapshot): avoid duplicate projection registry setup --- scripts/python-snapshot-workflow-order.spec.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/python-snapshot-workflow-order.spec.ts b/scripts/python-snapshot-workflow-order.spec.ts index 1d5d46ac58..964244f5da 100644 --- a/scripts/python-snapshot-workflow-order.spec.ts +++ b/scripts/python-snapshot-workflow-order.spec.ts @@ -6,7 +6,6 @@ import SessionStore, { SessionId } from '@deepseek-ai/dsh-session' import { WorkflowRunId } from '@deepseek-ai/dsh-workflow' import AgentLoop from '@deepseek-ai/dsh-agent-loop' import { mountAgentLoopTestDependencies } from '@deepseek-ai/dsh-agent-loop-testkit' -import SessionProjectionRegistry from '@deepseek-ai/dsh-session-projection' import SubagentRuntime from '@deepseek-ai/dsh-subagent' import * as spawn from '@deepseek-ai/dsh-subagent-spawn-in-process' import { MockAdapter, textResponse } from '../packages/core/agent-loop/tests/mock-adapter.ts' @@ -60,7 +59,6 @@ describe('advanced Python snapshot workflow ordering', () => { async apply(inner: Context) { await mountAgentLoopTestDependencies(inner) await inner.plugin(AgentLoop, { agents: [] }) - await inner.plugin(SessionProjectionRegistry) await inner.plugin(SubagentRuntime) await inner.plugin(spawn, { providerName: 'spawn' }) inner.on('agent/pre-step', ({ agent }, next) => {