blob: 75ac380f1258753fafa60c8e7fbdb46bfd6269f3 [file] [log] [blame]
describe('RemoteDebugCtrl', function() {
beforeEach(angular.mock.module(require('./').name))
var scope, ctrl
beforeEach(inject(function($rootScope, $controller) {
scope = $rootScope.$new()
ctrl = $controller('RemoteDebugCtrl', {$scope: scope})
}))
it('should ...', inject(function() {
expect(1).toEqual(1)
}))
})