This is an automated email from the ASF dual-hosted git repository. Aman-Mittal pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/fineract-backoffice-ui.git
commit ad18b5bf5009c024116c5ef3af836604b45adeed Merge: edeb5b4 937af9d Author: Aman-Mittal <[email protected]> AuthorDate: Sun Aug 9 16:10:34 2026 +0530 Merge pull request #308 from iamhaseebn/fix-report-parameter-discovery fix(reporting): discover report parameters dynamically e2e/functional-coverage.spec.ts | 32 +- e2e/report-enhancements.spec.ts | 107 ++++- e2e/report-parameter-backend.spec.ts | 113 +++++ e2e/reporting.spec.ts | 8 + playwright.config.ts | 1 + .../reporting/report-execution.service.spec.ts | 274 +++++++++++++ .../features/reporting/report-execution.service.ts | 191 +++++++++ .../reporting/run-report.component.spec.ts | 146 +++++-- src/app/features/reporting/run-report.component.ts | 454 ++++++++++++++------- src/assets/i18n/en.json | 6 +- 10 files changed, 1156 insertions(+), 176 deletions(-) diff --cc playwright.config.ts index 3ed23b8,f66d5f6..02db31d --- a/playwright.config.ts +++ b/playwright.config.ts @@@ -21,11 -19,10 +21,12 @@@ const BACKEND_SPECS = 'loan-account-actions.spec.ts', 'loan-charge-off.spec.ts', 'loan-lifecycle.spec.ts', + 'loan-product-accounting.spec.ts', 'loan-schedule-type.spec.ts', 'loan-servicing.spec.ts', + 'share-account-servicing.spec.ts', 'login.spec.ts', + 'report-parameter-backend.spec.ts', 'teller-cash-management.spec.ts', ];
