Moved Remote Debug from Advanced to Dashboard for faster access.

This commit is contained in:
Gunther Brunner
2014-08-07 14:55:40 +09:00
parent ad29c048b3
commit 5bad2a35d5
10 changed files with 24 additions and 18 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);
}));
});