Created
November 12, 2014 23:48
-
-
Save Freyert/f849000859c9ba3e7a74 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| describe('CTRL: Dashboard', function() { | |
| var ctr, scope, module; | |
| beforeEach(function() { | |
| module = angular.module('dashboard'); | |
| scope = {}; | |
| }); | |
| /*beforeEach(inject(function($controller) { | |
| scope = {}; | |
| ctrl = $controller("DasboardCtrl", {$scope: scope}); | |
| }));*/ | |
| it('should have an empty patient stack', inject(function ($controller) { | |
| ctrl = $controller("DashboardCtrl", {$scope: scope}); | |
| expect(ctrl.patientStack.length).toBe(0); | |
| })); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment