From 8448569aca184affea5f0940ba84f2885a52f672 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Fri, 17 Apr 2026 18:16:37 +0100 Subject: [PATCH] test: narrow skills config imports --- src/agents/skills.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/agents/skills.test.ts b/src/agents/skills.test.ts index 8b9bebe5069..a9d184aac46 100644 --- a/src/agents/skills.test.ts +++ b/src/agents/skills.test.ts @@ -4,8 +4,8 @@ import { afterAll, afterEach, beforeAll, describe, expect, it } from "vitest"; import { clearRuntimeConfigSnapshot, setRuntimeConfigSnapshot, - type OpenClawConfig, -} from "../config/config.js"; +} from "../config/runtime-snapshot.js"; +import type { OpenClawConfig } from "../config/types.openclaw.js"; import { clearPluginDiscoveryCache } from "../plugins/discovery.js"; import { clearPluginManifestRegistryCache } from "../plugins/manifest-registry.js"; import { withPathResolutionEnv } from "../test-utils/env.js";