You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When models lack eventResources definitions, the ORD loader initializes empty packages due to overstrict conditional logic:
// lib/ord.js (Line 150)if(_getAPIResources(linkedCsn,appConfig).length&&// AND condition_getEventResources(linkedCsn,appConfig).length// ← Problematic check){ordDocument.packages=_getPackages(...);}
It will cause following issues:
packagesIds is empty
no partOfPackage in entityTypes
We need to investigate why do we need to consider eventResouces when get packages and extend fully tests. At the moment, ord test does not cover no event testcase.
The text was updated successfully, but these errors were encountered:
When models lack
eventResources
definitions, the ORD loader initializes empty packages due to overstrict conditional logic:It will cause following issues:
We need to investigate why do we need to consider eventResouces when get packages and extend fully tests. At the moment, ord test does not cover no event testcase.
The text was updated successfully, but these errors were encountered: