approvals
Version:
Approval Tests Library - Capturing Human Intelligence
23 lines (19 loc) • 595 B
text/typescript
import { exec } from "child_process";
import { Reporter } from "../Core/Reporter";
import { Config } from "../config";
import { platform } from "../osTools";
class ReportByOpeningTheReceivedFile implements Reporter {
name: string = "ReportByOpeningTheReceivedFile";
canReportOn(_fileName: string): boolean {
return true;
}
report(
_approvedFileName: string,
receivedFileName: string,
_options?: Partial<Config>,
): void {
const openCommand = platform.isWindows ? "start" : "open";
const shell = `${openCommand} "${receivedFileName}"`;
exec(shell);
}
}