docs: document channel setup tests

This commit is contained in:
Peter Steinberger
2026-06-04 18:46:23 -04:00
parent 71b09b99f8
commit 5c362884f3
5 changed files with 5 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
// Channel plugin resolution tests cover trusted catalog lookup, install prompts, and setup plugin snapshots.
import { beforeEach, describe, expect, it, vi } from "vitest";
import type { ChannelPluginCatalogEntry } from "../../channels/plugins/catalog.js";
import type { ChannelPlugin } from "../../channels/plugins/types.js";

View File

@@ -1,3 +1,4 @@
// Channel setup discovery tests cover visible setup choices from bundled, installed, and trusted catalog sources.
import { beforeEach, describe, expect, it, vi } from "vitest";
import type { PluginAutoEnableResult } from "../../config/plugin-auto-enable.js";

View File

@@ -1,3 +1,4 @@
// Channel setup plugin install tests cover install decisions, registry reloads, scoped snapshots, and trust boundaries.
import path from "node:path";
import { bundledPluginRoot, bundledPluginRootAt } from "openclaw/plugin-sdk/test-fixtures";
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";

View File

@@ -1,3 +1,4 @@
// Channel setup registry tests cover adapter construction and pass-through setup wizard surfaces.
import { describe, expect, it } from "vitest";
import type { ChannelSetupPlugin } from "../../channels/plugins/setup-wizard-types.js";
import type { ChannelSetupWizard } from "../../channels/plugins/setup-wizard.js";

View File

@@ -1,3 +1,4 @@
// Trusted channel catalog tests cover workspace shadow filtering and plugin auto-enable trust resolution.
import { beforeEach, describe, expect, it, vi } from "vitest";
import type { ChannelPluginCatalogEntry } from "../../channels/plugins/catalog.js";