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