docs: document cli service tests

This commit is contained in:
Peter Steinberger
2026-06-04 19:39:38 -04:00
parent 912e70acbd
commit b59b34f9d5
29 changed files with 29 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
// Node daemon tests cover node daemon command runtime behavior and errors.
import { beforeEach, describe, expect, it, vi } from "vitest";
import type { GatewayServiceRuntime } from "../../daemon/service-runtime.js";
import { runNodeDaemonStatus } from "./daemon.js";

View File

@@ -1,3 +1,4 @@
// Node CLI register tests cover node command registration and option wiring.
import { Command } from "commander";
import { beforeEach, describe, expect, it, vi } from "vitest";
import { registerNodeCli } from "./register.js";