Files
stf-DeviceFarmer-1/res/app/control-panes/dashboard/remote-debug/remote-debug-spec.js

17 lines
340 B
JavaScript

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);
}));
});