Builder file is missing an _
this[_name] = Utils.override(this[name], _fun);
This goes unnoticed in the browser because name resolves to a global variable which results in the call being Utils.override(undefined, _fun) (which works).
However, when running in headless tests on node, it results in an undefined variable exception.