diff --git a/lib/function/utils/import.js b/lib/function/utils/import.js index 3f75e2262..82c72fb88 100644 --- a/lib/function/utils/import.js +++ b/lib/function/utils/import.js @@ -43,6 +43,8 @@ module.exports = function (math) { if (isString(object)) { // a string with a filename + + // istanbul ignore else (we cannot unit test the else case in a node.js environment) if (typeof (require) !== 'undefined') { // load the file using require var _module = require(object);