如何编写单元测试angularjs的结构如下?

时间:2019-08-04 06:20:04

标签: angularjs unit-testing testing jasmine

我的角结构如下。

var testApp = angular.module("testApp", ["ngRoute"]);


testApp.service('testService', function($http, $q) {

});

testApp.controller("testController", function($scope, testService) {
  angular.element(document).ready(function() {


  });
});
<div>
  <div ng-app="testApp">
    <div ng-view></div>
  </div>
</div>

我应该如何在这种结构中使用茉莉花?

0 个答案:

没有答案