From 14ccae325f86e749100ad5c90b3375fc598d2f29 Mon Sep 17 00:00:00 2001 From: Keith Schaab Date: Tue, 19 May 2026 18:18:32 +0000 Subject: [PATCH] Fix merge conflict --- packages/a2a-server/src/config/config.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/a2a-server/src/config/config.test.ts b/packages/a2a-server/src/config/config.test.ts index c8e9466bf9..ffb4b37424 100644 --- a/packages/a2a-server/src/config/config.test.ts +++ b/packages/a2a-server/src/config/config.test.ts @@ -296,7 +296,6 @@ describe('loadConfig', () => { expect((config as any).fileFiltering.customIgnoreFilePaths).toEqual([]); }); -<<<<<<< HEAD it('should initialize FileDiscoveryService with correct options', async () => { const testPath = '/tmp/ignore'; vi.stubEnv('CUSTOM_IGNORE_FILE_PATHS', testPath); @@ -312,7 +311,9 @@ describe('loadConfig', () => { respectGitIgnore: false, respectGeminiIgnore: undefined, customIgnoreFilePaths: [testPath], -======= + }); + }); + describe('policy engine configuration', () => { it('should merge V1 and V2 tool settings into policySettings', async () => { const settings: Settings = { @@ -389,7 +390,6 @@ describe('loadConfig', () => { undefined, true, ); ->>>>>>> 85566a73f (fix(a2a-server): Implement default policy loading for parity with CLI (#27073)) }); });