このガイドに従ってAngular Controller単体テストをセットアップしようとしました。コードは次のとおりです。
describe('ProfileController', function() {
// load haloApp module
beforeEach(module('haloApp'));
it("should have notify_changed in scope", inject(function($controller) {
var scope= {},
ctrl = $controller('ProfileController', {$scope:scope});// inject controller
// expect(ProfileController).not.toBeDefined();
expect(scope.notify_changed).toBe(false);
}));
});
このテスト ケースを jasmine で実行すると、次のエラーが報告されます。
ReferenceError: module is not defined
このコード スニペットの前に角度ファイルが必要です。不足しているものはありますか?