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

17 lines
321 B
JavaScript

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