- Bringing back browser, navigation, input, dashboard and shell templates.

This commit is contained in:
Gunther Brunner
2014-03-27 21:30:27 +09:00
parent 840dc81f55
commit be6bdcd239
28 changed files with 236 additions and 22 deletions

View File

@@ -0,0 +1,17 @@
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);
}));
});