mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-08 18:33:39 +02:00
7 lines
270 B
TypeScript
7 lines
270 B
TypeScript
import { runQaE2eSelfCheck } from "../src/qa-e2e/runner.js";
|
|
|
|
const outputPath = process.argv[2]?.trim() || ".artifacts/qa-e2e/self-check.md";
|
|
|
|
const result = await runQaE2eSelfCheck({ outputPath });
|
|
process.stdout.write(`QA self-check report: ${result.outputPath}\n`);
|