web-dev-qa-db-fra.com

Test Karma: TypeError: Tentative d'assigner à la propriété en lecture seule

Je reçois le message d'erreur lorsque j'essaie de tester mon contrôleur. Lorsque je débogue le testcase, j'obtiens la valeur attendue mais échoue avec l'erreur ci-dessous.Que me manque-t-il ici ou si je teste la variable du contrôleur de manière incorrecte manière?

Mon fichier de spécification est ci-dessous

'use strict';
describe('Information.controller', function () {
beforeEach(angular.mock.module('asp'));
var InformationController, scope;

beforeEach(inject(function($controller, $rootScope) {
    scope = $rootScope.$new();
    InformationController = $controller('InformationController', {
        $scope: scope
    });
}));

fit('Should remove the object without info from the  object', function () {
    InformationController.Data = [
        {
            "ban": "03745645455",
            "accountNo": "0000drgyt456456565",
            "id": "2c4cc5e8-f360367"
        },
        {
            "ban": "27346fgh9080",
            "accountNo": "000456456ytr655680",
            "id": "2c4cc8ae-50bbf360367"
        }
    ];
    InformationController.banList = InformationController.Data.map((value, index) => (value && value.ban ? {'id': index, 'text': value.ban} : null))
    .filter(value => value);
    expect(InformationController.banList.length).toBe(3);
});
});
24
Raphael

une erreur en lecture seule est provoquée par scope.page (dans mon InformationController) indéfini, puis le code tente d'attribuer une propriété à indéfini.Si le bloc beforeEach modifié est comme ci-dessous

beforeEach(inject(function ($controller, $rootScope) {
        scope = $rootScope.$new();
        scope.page3 = {};
        InformationController = $controller('InformationController', {
            $scope: scope
        });
    }));

Cela a résolu le problème.

31
Raphael