Adding remote debug.

For some reason ng-table is loosing the header.
This commit is contained in:
Gunther Brunner
2014-06-20 20:36:21 +09:00
parent 7e7b52de7c
commit 905879235e
9 changed files with 95 additions and 61 deletions

View File

@@ -0,0 +1,17 @@
describe('RemoteDebugCtrl', function () {
beforeEach(module('stf.remote-debug'));
var scope, ctrl;
beforeEach(inject(function ($rootScope, $controller) {
scope = $rootScope.$new();
ctrl = $controller('RemoteDebugCtrl', {$scope: scope});
}));
it('should ...', inject(function () {
expect(1).toEqual(1);
}));
});