mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-03 10:04:07 +00:00
12 lines
387 B
TypeScript
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");
|
|
});
|
|
});
|