Files
stf/res/app/control-panes/dashboard/dashboard-spec.js

17 lines
333 B
JavaScript

describe('DashboardCtrl', function () {
beforeEach(module('stf.dashboard'));
var scope, ctrl;
beforeEach(inject(function ($rootScope, $controller) {
scope = $rootScope.$new();
ctrl = $controller('DashboardCtrl', {$scope: scope});
}));
it('should ...', inject(function () {
expect(1).toEqual(1);
}));
});