我正在使用Jasmine在Angular中构建指令测试.我有一个小例子测试,看起来像这样:
原文链接:https://www.f2er.com/angularjs/141503.htmlit("should compare html node",inject( function ($compile,$rootScope) { var elm = angular.element('<input>'); elm = $compile(elm)($scope); $scope.$digest(); console.log('btn',elm); // output: '<input class="ng-scope">' expect(elm).toBe('<input class="ng-scope">'); expect(elm[0]).toBe('<input class="ng-scope">'); // these also fail expect(elm.html()).toBe('<input class="ng-scope">'); // "" }));
所以我得到了预期的输出到控制台,但Jasmine抱怨错误预期{length:1,0:HTMLNode}为’< input class =“ng-scope”>‘
我也尝试使用elm [0],它给出了相同的错误和elm.html()但只返回一个空字符串.如何正确地将HTML节点与字符串进行比较?
NB我知道这是一个不切实际的测试,但我只是想演示我当前的问题.