From 25efb8ff6f4e4f7217a98d5345c23d088168c576 Mon Sep 17 00:00:00 2001 From: imccyu <276526105+imccyu@users.noreply.github.com> Date: Thu, 13 Aug 2026 01:37:31 +0800 Subject: [PATCH] fix: snapshot test --- apps/web/tests/scaffold.ts | 23 ++++------------------- 1 file changed, 4 insertions(+), 19 deletions(-) diff --git a/apps/web/tests/scaffold.ts b/apps/web/tests/scaffold.ts index f568637925..1c3fb67e85 100644 --- a/apps/web/tests/scaffold.ts +++ b/apps/web/tests/scaffold.ts @@ -70,8 +70,6 @@ import SessionStore, { type SessionHeader, } from '@deepseek-ai/dsh-session' import JsonlSessionPersistence from '@deepseek-ai/dsh-session-persistence-jsonl' -import * as CordisHostRunner from '@deepseek-ai/dsh-cordis-host-runner' -import * as ToolCordis from '@deepseek-ai/dsh-tool-cordis' // Empty type imports carry the webServer/agents/sessionPersistence Context merges. import type {} from '@deepseek-ai/dsh-host-webserver' import type {} from '@deepseek-ai/dsh-agent' @@ -218,7 +216,7 @@ export interface LaunchOptions { */ toolsMode?: 'native' | 'code' | 'both' /** - * Insert the opt-in self-referential Cordis tools into the shipped tree. + * Insert the opt-in model-facing Cordis tool provider into the shipped tree. * Record and replay use the same tool surface, so captured request headers * remain reconstructable without making the tools a product default. */ @@ -461,18 +459,11 @@ export async function launchWebScaffold(options: LaunchOptions = {}): Promise