💅 style: Reformat a test helper signature

Formatting only. The line was edited after the last gate run and committed
without re-running it, which failed ESLint and Prettier in CI.
This commit is contained in:
Danny Avila 2026-08-31 21:39:16 -04:00
parent 9044dedcb2
commit f435cb2a80

View file

@ -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([]);