Files
openclaw/test/scripts/qa-lab-up.test.ts
2026-05-31 06:51:34 +01:00

12 lines
387 B
TypeScript

import { describe, expect, it } from "vitest";
import { qaLabUpTesting } from "../../scripts/qa-lab-up.js";
describe("scripts/qa-lab-up", () => {
it("prints help before loading the Docker runtime", () => {
const args = qaLabUpTesting.parseQaLabUpArgs(["--help"]);
expect(args.help).toBe(true);
expect(qaLabUpTesting.usage()).toContain("Usage: pnpm qa:lab:up");
});
});