mirror of
https://github.com/Pythagora-io/gpt-pilot.git
synced 2026-05-09 03:00:20 -04: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`);
|