From f435cb2a80cbb6c19758546d9f02f987ea8f9137 Mon Sep 17 00:00:00 2001 From: Danny Avila Date: Mon, 31 Aug 2026 21:39:16 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=85=20style:=20Reformat=20a=20test=20h?= =?UTF-8?q?elper=20signature?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Formatting only. The line was edited after the last gate run and committed without re-running it, which failed ESLint and Prettier in CI. --- packages/api/src/agents/__tests__/initialize.test.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/api/src/agents/__tests__/initialize.test.ts b/packages/api/src/agents/__tests__/initialize.test.ts index fe0020d99e..b004163f23 100644 --- a/packages/api/src/agents/__tests__/initialize.test.ts +++ b/packages/api/src/agents/__tests__/initialize.test.ts @@ -3020,9 +3020,7 @@ describe('initializeAgent — code-generated file thread filter (regression)', ( * files rather than three. */ const { primeResources } = jest.requireMock('../resources') as { primeResources: jest.Mock }; const lastCall = primeResources.mock.calls[primeResources.mock.calls.length - 1]; - const screen = lastCall?.[0].screenPersistentFiles as ( - files: unknown[], - ) => unknown[]; + const screen = lastCall?.[0].screenPersistentFiles as (files: unknown[]) => unknown[]; filterFilesByEndpointRuntimeConfig.mockClear(); filterFilesByEndpointRuntimeConfig.mockReturnValueOnce([]); screen([]);