UNPKG

generator-jangular

Version:

Quickstart a Maven + CDI + TomEE + Jackson + AngularJS project

23 lines (17 loc) 568 B
'use strict'; describe('Controller: MainCtrl', function () { // load the controller's module beforeEach(module('<%= _.camelize(baseName) %>App')); var MainCtrl, scope; // Initialize the controller and a mock scope beforeEach(inject(function ($controller, $rootScope) { scope = $rootScope.$new(); MainCtrl = $controller('MainCtrl', { $scope: scope }); })); it('should attach a list of awesomeThings to the scope', function () { expect(scope.awesomeThings.length).toBe(3); }); });