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
In templates.js, the function _getPackageID() has strange check. We need to figure out why it will be failed the test if we remove it:
function_getPackageID(namespace,packageIds,resourceType){//TODO: without this check, it will be failed in ordPackageJson.test.js, need to check why it is failingif(!(packageIdsinstanceofSet))return;constpackageIdsArray=Array.from(packageIds);returnpackageIdsArray.find((pkg)=>pkg.includes("-"+resourceType))||packageIdsArray.find((pkg)=>pkg.includes(namespace));}
The text was updated successfully, but these errors were encountered:
In templates.js, the function _getPackageID() has strange check. We need to figure out why it will be failed the test if we remove it:
The text was updated successfully, but these errors were encountered: