approvals
Version:
Approval Tests Library - Capturing Human Intelligence
31 lines (26 loc) • 864 B
text/typescript
import { searchForExecutable } from "../../AUtils";
import { platform } from "../../osTools";
import shelljs from "shelljs";
import { GenericDiffReporterBase } from "../GenericDiffReporterBase";
export default class BeyondCompareReporter extends GenericDiffReporterBase {
constructor() {
super("BeyondCompare");
let app: string = "";
if (platform.isMac) {
try {
app = shelljs.ls(
"/Applications/Beyond Compare.app/Contents/MacOS/bcomp",
)[0];
} catch (err) {
console.error(err);
}
app = app || searchForExecutable("bcomp");
} else if (platform.isWindows) {
app =
searchForExecutable("Beyond Compare 4", "BCompare.exe") ||
searchForExecutable("Beyond Compare 3", "BCompare.exe");
}
app = app || searchForExecutable("bcomp");
this.exePath = app;
}
}