- Shell module created.

- Device table now almost works.
This commit is contained in:
Gunther Brunner
2014-03-19 19:36:58 +09:00
parent 0c9af4a436
commit 7e4f9bd0cd
6 changed files with 89 additions and 20 deletions

View File

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