From 2ddb08558a393e66c4dbce43d603f4c3108399de Mon Sep 17 00:00:00 2001 From: Ralph Khreish <35776126+Crunchyman-ralph@users.noreply.github.com> Date: Sat, 2 Aug 2025 22:57:22 +0300 Subject: [PATCH] chore: format --- .../task-manager/scope-adjustment.test.js | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/tests/unit/scripts/modules/task-manager/scope-adjustment.test.js b/tests/unit/scripts/modules/task-manager/scope-adjustment.test.js index 3133d95f..f013ad2f 100644 --- a/tests/unit/scripts/modules/task-manager/scope-adjustment.test.js +++ b/tests/unit/scripts/modules/task-manager/scope-adjustment.test.js @@ -37,17 +37,18 @@ jest.unstable_mockModule( }) ); -jest.unstable_mockModule( - '../../../../../src/utils/path-utils.js', - () => ({ - findComplexityReportPath: jest.fn() - }) -); +jest.unstable_mockModule('../../../../../src/utils/path-utils.js', () => ({ + findComplexityReportPath: jest.fn() +})); // Import modules after mocking -const { log, readJSON, writeJSON, readComplexityReport, findTaskInComplexityReport } = await import( - '../../../../../scripts/modules/utils.js' -); +const { + log, + readJSON, + writeJSON, + readComplexityReport, + findTaskInComplexityReport +} = await import('../../../../../scripts/modules/utils.js'); const { generateObjectService } = await import( '../../../../../scripts/modules/ai-services-unified.js' );