我的问题似乎很奇怪。我有一个带有一个新的,非常简单的函数的构造函数,它应该检查变量是否包含在数组中。它完美地工作(我在表单中使用此功能)。
但是......我不能在这个函数上写任何单元测试,因为Karma / Jasmine看不到函数"包括"数组。
有人可以建议我该怎么做?这里的情况,有点简化:
//要测试的构造函数
vm.isNameAlreadyUsed = function () {
//debut logging:
console.log ("vm.allNames ",vm.allNames); // output: vm.allNames ['A', 'B', 'C']
console.log ("and vm.nameToBeChecked is ",vm.nameToBeChecked); //output: and vm.nameToBeChecked is 'A'
return vm.allNames.includes(vm.nameToBeChecked);
// The previous works as expected at runtime, but it causes the following exception in karma/jasmine:
// TypeError: undefined is not a constructor (evaluating 'vm.allNames.includes(vm.nameToBeChecked)
};
//测试(业力/茉莉花)
theConstructor.allNames = ["A", "B", "C"];
theConstructor.nameToBeChecked = "A";
var result theConstructor.isNameAlreadyUsed(); //error!
expect(result).toBeTruthy();
茉莉花是否有可能无法看到"包括"?数组被填充,变量也......以及为什么应该是那里的任何构造函数?
TypeError: undefined is not a constructor (evaluating 'vm.allNames.includes(vm.nameToBeChecked)
由于
更新
我注意到在茉莉花中,对#34;的任何调用包括"导致错误。它并不取决于哪里。示例它足以在jasmine文件中编写以下代码以获取提及...构造函数的错误(?!?):
[1, 2, 3].includes(2);
// TypeError: undefined is not a constructor (evaluating '[1, 2, 3].includes(2)') in ...
答案 0 :(得分:1)
我猜这很可能是由于以下两点之一:
您的节点版本可能是< 6.0.0,因为本地不支持Array.prototype.includes,直到node@6.0.0,或
karma config file中的浏览器设置为" IE",因为Internet Explorer不支持Array.prototype.includes。