main.js 504 B

12345678910111213141516171819202122
  1. 'use strict';
  2. describe('Controller: MainCtrl', function () {
  3. // load the controller's module
  4. beforeEach(module('kasseApp'));
  5. var MainCtrl,
  6. scope;
  7. // Initialize the controller and a mock scope
  8. beforeEach(inject(function ($controller, $rootScope) {
  9. scope = $rootScope.$new();
  10. MainCtrl = $controller('MainCtrl', {
  11. $scope: scope
  12. });
  13. }));
  14. it('should attach a list of awesomeThings to the scope', function () {
  15. expect(scope.awesomeThings.length).toBe(3);
  16. });
  17. });