UNPKG

generator-teonet-webkit

Version:

Teonet node-webkit application generator

26 lines (19 loc) 575 B
/* global expect */ 'use strict'; describe('Controller: TestCtrl', function () { // load the controller's module beforeEach(module('teonetWebkitApp')); var TestCtrl, scope; // Initialize the controller and a mock scope beforeEach(inject(function ($controller, $rootScope) { scope = $rootScope.$new(); TestCtrl = $controller('TestCtrl', { $scope: scope // place here mocked dependencies }); })); it('should attach a list of awesomeThings to the scope', function () { expect(TestCtrl.awesomeThings.length).toBe(3); }); });