describe('UsbCtrl', function () { beforeEach(module('stf.usb')); var scope, ctrl; beforeEach(inject(function ($rootScope, $controller) { scope = $rootScope.$new(); ctrl = $controller('UsbCtrl', {$scope: scope}); })); it('should ...', inject(function () { expect(1).toEqual(1); })); });