diff --git a/packages/cli/__tests__/commands/start.test.ts b/packages/cli/__tests__/commands/start.test.ts index de47d8b80..46fbc45a1 100644 --- a/packages/cli/__tests__/commands/start.test.ts +++ b/packages/cli/__tests__/commands/start.test.ts @@ -1075,11 +1075,11 @@ describe("start command — autoCreateConfig", () => { it("generates config with empty notifiers array (no desktop notifier added by default)", async () => { const { detectEnvironment } = await import("../../src/lib/detect-env.js"); vi.mocked(detectEnvironment).mockResolvedValue({ - isGitRepo: false, + isGitRepo: true, gitRemote: null, ownerRepo: null, - currentBranch: null, - defaultBranch: null, + currentBranch: "main", + defaultBranch: "main", hasTmux: true, hasGh: false, ghAuthed: false,