在karma angularjs方法测试中的console.log

时间:2016-03-07 15:05:58

标签: javascript angularjs testing jasmine karma-jasmine

我有点困惑的是为什么我将undefined作为我正在测试的函数的返回值。

这是我正在测试的功能:

 $scope.entityItemsIntoObjectChecked = function (entityItems) {
    newEntityWithChecked = entityItems.map(function (value) {
        return { "val": value, "checked": false }; 
    });
    shareDataService.setEntityArray(newEntityWithChecked);
}

和我的测试套件的一部分:

it("should arrange an array into ovject with extra value for entities + depots", inject(function (shareDataService) {
        var dummyEntityArray = ["ent1", "ent2", "ent3"];
        var expectedObjectArray = [{ val: "ent1", checked: false }, { val: 'ent2', checked: false }, { val: 'ent3', checked: false }];

        expect(mainScope.entityItemsIntoObjectChecked).toBeDefined();
        mainScope.entityItemsIntoObjectChecked(dummyEntityArray);
        console.log(mainScope.entityItemsIntoObjectChecked(dummyEntityArray))
}))

我希望行console.log(mainScope.entityItemsIntoObjectChecked(dummyEntityArray))根据我之前在dummyEntityArray行上传递的数组mainScope.entityItemsIntoObjectChecked(dummyEntityArray);输出我的数组

但我在console.log上得到undefined。这是为什么?

1 个答案:

答案 0 :(得分:1)

您的$scope.entityItemsIntoObjectChecked方法不返回任何内容,因此返回值为undefined

您可以从方法返回newEntityWithChecked数组,也可以在shareDataService.setEntityArray方法上监视,以验证是否正在传递预期的数组。

您可以在此处阅读有关间谍的文档:http://jasmine.github.io/2.0/introduction.html#section-Spies