Skip to content
This repository was archived by the owner on Jun 8, 2026. It is now read-only.

Commit 1bb2a06

Browse files
committed
fix hanging tests
1 parent 9c8af3c commit 1bb2a06

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/desktop/test/symphony-loop-generate-prd.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ afterEach(async () => {
6767
// ---------------------------------------------------------------------------
6868

6969
async function initGitRepo(repoPath: string): Promise<void> {
70-
await execFileAsync("git", ["init", repoPath]);
70+
await execFileAsync("git", ["init", "-b", "main", repoPath]);
7171
await execFileAsync("git", ["-C", repoPath, "config", "user.email", "test@test.com"]);
7272
await execFileAsync("git", ["-C", repoPath, "config", "user.name", "Test"]);
7373
await fs.writeFile(path.join(repoPath, "README.md"), "# initial\n");

0 commit comments

Comments
 (0)