This is an automated email from the ASF dual-hosted git repository.

Aman-Mittal pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/fineract-backoffice-ui.git


    from bcb0c07  Merge pull request #413 from 
LE0-Lin/test/interop-vitest-migration
     add d21ec5f  fix(dialogs): replace the remaining native confirmations in 
products and system
     add b75b2c5  feat(roles): preview the navigation a permission change gains 
or loses
     add 6aa4c50  ci: shard the real-backend e2e suite and cache what CI 
re-downloads
     add d23af6d  ci: report per-test detail, comment on forks, and diagram the 
change
     add e70e264  fix(ci): escape backslashes in the Markdown table renderer
     add cf5a0a6  ci: drop the buildx layer cache, which the ASF action 
allow-list forbids
     new c7cb6f8  Merge pull request #414 from 
Aman-Mittal/feat/role-impact-preview-dialogs-and-ci-sharding

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/scripts/post-e2e-comments.js               | 235 ++++++++++
 .github/scripts/upsert-e2e-comment.js              |  69 ---
 .github/workflows/ci.yml                           | 119 +++++-
 .github/workflows/e2e.yml                          | 272 +++++++++---
 .github/workflows/pr-comments.yml                  |  96 +++++
 DOCS/CI_CHECKS.md                                  | 142 +++++-
 angular.json                                       |   7 +-
 eslint-suppressions.json                           |  68 ---
 karma-baseline.json                                |  13 -
 package.json                                       |   1 +
 scripts/e2e-summary.mjs                            | 297 +++++++++++--
 scripts/pr-sequence-diagram.mjs                    | Bin 0 -> 12119 bytes
 scripts/reporting.test.mjs                         | 105 +++++
 src/app/core/services/auth.service.ts              |  25 +-
 .../services/navigation-config.service.test.ts     |  43 ++
 src/app/core/services/navigation-config.service.ts |  38 +-
 src/app/core/utils/permission-matcher.test.ts      |  77 ++++
 src/app/core/utils/permission-matcher.ts           |  59 +++
 ...> collateral-management-list.component.test.ts} |  35 +-
 .../collateral-management-list.component.ts        |  17 +-
 ...=> interest-rate-chart-slabs.component.test.ts} |  42 +-
 .../interest-rate-chart-slabs.component.ts         |  18 +-
 ...=> interest-rate-charts-list.component.test.ts} |  38 +-
 .../interest-rate-charts-list.component.ts         |  17 +-
 ....ts => loan-originators-list.component.test.ts} |  38 +-
 .../loan-originators-list.component.ts             |  14 +-
 ...onent.spec.ts => product-mix.component.test.ts} |  42 +-
 .../products/product-mix/product-mix.component.ts  |  15 +-
 ...c.ts => savings-charges-list.component.test.ts} |  35 +-
 .../savings-charges-list.component.ts              |  17 +-
 ...c.ts => share-dividends-list.component.test.ts} |  35 +-
 .../share-dividends-list.component.ts              |  18 +-
 .../security/roles/role-form.component.test.ts     | 243 +++++++++++
 .../features/security/roles/role-form.component.ts | 475 ++++++++++++++++++---
 ....spec.ts => adhoc-query-list.component.test.ts} |  38 +-
 .../adhoc-query/adhoc-query-list.component.ts      |  17 +-
 .../data-tables/datatables-list.component.ts       |  22 +-
 .../delinquency-management.component.ts            |  50 ++-
 ...ntity-data-table-checks-list.component.test.ts} |  35 +-
 .../entity-data-table-checks-list.component.ts     |  17 +-
 ...ec.ts => entity-mapping-list.component.test.ts} |  38 +-
 .../entity-mapping-list.component.ts               |  18 +-
 ...ponent.spec.ts => hooks-list.component.test.ts} |  35 +-
 .../features/system/hooks/hooks-list.component.ts  |  16 +-
 ... => report-mailing-jobs-list.component.test.ts} |  38 +-
 .../report-mailing-jobs-list.component.ts          |  17 +-
 ...omponent.spec.ts => sms-list.component.test.ts} |  35 +-
 src/app/features/system/sms/sms-list.component.ts  |  14 +-
 .../system/templates/templates-list.component.ts   |  21 +-
 src/assets/i18n/en.json                            |  81 +++-
 50 files changed, 2663 insertions(+), 594 deletions(-)
 create mode 100644 .github/scripts/post-e2e-comments.js
 delete mode 100644 .github/scripts/upsert-e2e-comment.js
 create mode 100644 .github/workflows/pr-comments.yml
 create mode 100644 scripts/pr-sequence-diagram.mjs
 create mode 100644 scripts/reporting.test.mjs
 create mode 100644 src/app/core/utils/permission-matcher.test.ts
 create mode 100644 src/app/core/utils/permission-matcher.ts
 rename 
src/app/features/products/collateral-management/{collateral-management-list.component.spec.ts
 => collateral-management-list.component.test.ts} (73%)
 rename 
src/app/features/products/interest-rate-charts/{interest-rate-chart-slabs.component.spec.ts
 => interest-rate-chart-slabs.component.test.ts} (73%)
 rename 
src/app/features/products/interest-rate-charts/{interest-rate-charts-list.component.spec.ts
 => interest-rate-charts-list.component.test.ts} (72%)
 rename 
src/app/features/products/loan-originators/{loan-originators-list.component.spec.ts
 => loan-originators-list.component.test.ts} (70%)
 rename src/app/features/products/product-mix/{product-mix.component.spec.ts => 
product-mix.component.test.ts} (73%)
 rename 
src/app/features/products/savings-charges/{savings-charges-list.component.spec.ts
 => savings-charges-list.component.test.ts} (74%)
 rename 
src/app/features/products/share-dividends/{share-dividends-list.component.spec.ts
 => share-dividends-list.component.test.ts} (73%)
 create mode 100644 src/app/features/security/roles/role-form.component.test.ts
 rename src/app/features/system/adhoc-query/{adhoc-query-list.component.spec.ts 
=> adhoc-query-list.component.test.ts} (70%)
 rename 
src/app/features/system/entity-data-table-checks/{entity-data-table-checks-list.component.spec.ts
 => entity-data-table-checks-list.component.test.ts} (74%)
 rename 
src/app/features/system/entity-mapping/{entity-mapping-list.component.spec.ts 
=> entity-mapping-list.component.test.ts} (70%)
 rename src/app/features/system/hooks/{hooks-list.component.spec.ts => 
hooks-list.component.test.ts} (70%)
 rename 
src/app/features/system/report-mailing-jobs/{report-mailing-jobs-list.component.spec.ts
 => report-mailing-jobs-list.component.test.ts} (70%)
 rename src/app/features/system/sms/{sms-list.component.spec.ts => 
sms-list.component.test.ts} (70%)

Reply via email to