Skip to content

Commit b3bd405

Browse files
frostebiteclaude
andcommitted
fix: prettier formatting for orchestrator-folders-auth test
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 8a41533 commit b3bd405

File tree

3 files changed

+97
-15
lines changed

3 files changed

+97
-15
lines changed

dist/index.js

Lines changed: 94 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/model/orchestrator/options/orchestrator-folders-auth.test.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,8 @@ describe('OrchestratorFolders git auth', () => {
111111

112112
// Verify the base64 encoding and extraHeader config are correct
113113
const expectedEncoded = Buffer.from('x-access-token:ghp_test123').toString('base64');
114-
expect(OrchestratorSystem.Run).toHaveBeenCalledWith(
115-
expect.stringContaining(expectedEncoded),
116-
);
117-
expect(OrchestratorSystem.Run).toHaveBeenCalledWith(
118-
expect.stringContaining('.extraHeader'),
119-
);
114+
expect(OrchestratorSystem.Run).toHaveBeenCalledWith(expect.stringContaining(expectedEncoded));
115+
expect(OrchestratorSystem.Run).toHaveBeenCalledWith(expect.stringContaining('.extraHeader'));
120116
});
121117

122118
it('should not run git config in url mode', async () => {

0 commit comments

Comments
 (0)