fix: failing macos test

This commit is contained in:
David Kaya
2026-03-26 00:22:28 +01:00
parent 88030eb48d
commit 40ef1c07b5
+4 -2
View File
@@ -1,10 +1,12 @@
import { execFile, type ExecFileException } from 'node:child_process';
import * as childProcess from 'node:child_process';
import { promisify } from 'node:util';
import type { ProjectGitChangeSummary, ProjectGitCommitSummary, ProjectGitContext } from '@shared/domain/project';
import { nowIso } from '@shared/utils/ids';
const execFileAsync = promisify(execFile);
type ExecFileException = childProcess.ExecFileException;
const execFileAsync = promisify(childProcess.execFile);
const GIT_TIMEOUT_MS = 5_000;
type GitCommandRunner = (projectPath: string, args: string[]) => Promise<string>;