這個簡單的測試,我有以下測試:如何使茉莉
describe("An Angularjs test suite",function(){
beforeEach(module('myApp'));
var scope,controller;
beforeEach(inject(function($rootScope,$controller){
scope = $rootScope.$new(),
controller = $controller('homeController',{$scope:scope});
}));
it('should return true',function(){
expect(scope.helloWorld()).toBe('hello');
});
});
在HomeController的,我有這樣的:
$scope.helloWorld = function(){
return 'hello';
};
測試運行錯誤,說「undefined是不是一個函數', 問題是什麼?
發佈完整的錯誤消息和堆棧跟蹤以及完整的代碼。 – 2014-10-26 15:55:03