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
Starting from Version 0.3.3 the parameter name in _filterOutAddonFiles is a function and not the actual name. This issue seems fixed when changing line 255 (function _parentName) from
return this.parent.name;
to
return this.parent.pkg.name;
The text was updated successfully, but these errors were encountered:
So the underlying issue is tha this.parent is EITHER the project instance (which has a name function) OR an addon instance (which has name as a string property).
The current logic seems like it will work properly for nested addons (because parent.name will be a string), but not for top level addons.
rwjblue
changed the title
Coverage broken since 0.3.3
Missing coverage information in top-level addons in 0.3.3.
Oct 10, 2016
Starting from Version 0.3.3 the parameter
name
in_filterOutAddonFiles
is a function and not the actual name. This issue seems fixed when changing line 255 (function _parentName) fromto
The text was updated successfully, but these errors were encountered: