From cdb17b2a9df8d3063b3bee7ddc8edb3844805a38 Mon Sep 17 00:00:00 2001 From: frostebite Date: Mon, 9 Mar 2026 05:44:45 +0000 Subject: [PATCH] fix(test): add gitAuthMode to orchestrator-folders test mock The test mock was missing gitAuthMode, causing useHeaderAuth to default to true and strip the token from repo URLs. Adding gitAuthMode: 'url' restores the expected URL-mode behavior. Co-Authored-By: Claude Opus 4.6 --- src/model/orchestrator/options/orchestrator-folders.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/model/orchestrator/options/orchestrator-folders.test.ts b/src/model/orchestrator/options/orchestrator-folders.test.ts index ff77fbbb..7d5bba62 100644 --- a/src/model/orchestrator/options/orchestrator-folders.test.ts +++ b/src/model/orchestrator/options/orchestrator-folders.test.ts @@ -11,6 +11,7 @@ jest.mock('../orchestrator', () => ({ buildPath: 'Builds', maxRetainedWorkspaces: 0, gitPrivateToken: 'ghp_test123', + gitAuthMode: 'url', orchestratorRepoName: 'game-ci/unity-builder', githubRepo: 'user/my-game', },