@moonwall/cli
Version:
Testing framework for the Moon family of projects
14 lines (13 loc) • 489 B
JavaScript
// src/internal/effect/__tests__/launchNodeEffect.test.ts
import { describe, it, expect } from "vitest";
describe("launchNodeEffect", () => {
it("should have proper argument handling tested via ProcessManagerService", () => {
expect(true).toBe(true);
});
it("should have port discovery tested via PortDiscoveryService", () => {
expect(true).toBe(true);
});
it("should have readiness checks tested via NodeReadinessService", () => {
expect(true).toBe(true);
});
});