From 084e64744a91141d888a79a3c06d46639311b073 Mon Sep 17 00:00:00 2001 From: imccyu <276526105+imccyu@users.noreply.github.com> Date: Mon, 27 Jul 2026 08:30:57 +0800 Subject: [PATCH] test: defer coverage for the four new client plugin entry files The exhaustive lane imports the loader-facing src/index.ts of the new ui-slash/ui-command/ui-skill/ui-subagent packages without executing them (0% functions); same client-lane deferral as their client/ halves. --- vitest.config.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vitest.config.ts b/vitest.config.ts index 50ae61088a..33228e21ec 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -125,6 +125,10 @@ export default defineConfig({ // Slash/command/input round: per-file gaps deferred with the same // client-lane debt. TODO(gui): cover and remove with the lane above. 'packages/client/connection/src/client/fixture.ts', + 'packages/client/ui-command/src/index.ts', + 'packages/client/ui-skill/src/index.ts', + 'packages/client/ui-slash/src/index.ts', + 'packages/client/ui-subagent/src/index.ts', 'packages/client/ui-command/src/client/popup.ts', 'packages/client/ui-command/src/client/directory.ts', 'packages/client/ui-command/src/client/service.ts',