0
無法弄清楚如何使控制器測試正常工作。我正在玩ngStart種子項目。所以我分叉了存儲庫(https://github.com/Havrl/ngStart)並且想要創建一個非常基本的單元測試。無法使控制器測試與AngularJS +一起使用RequireJS
我控制器測試文件:
define(function() {
"use strict";
describe("the contactcontroller", function() {
var contactController, scope;
beforeEach(function() {
module("contact");
inject(["ContactController", function (_contactController) {
contactController = _contactController;
}]);
});
it("should give me true", function() {
expect(true).toBe(true);
});
});
});
但是,這是行不通的。
我錯過了什麼?