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