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

17 lines
327 B
JavaScript

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