import './index'; describe('Client', () => { describe('Component vnClientCreditInsuranceInsuranceIndex', () => { let controller; let $httpBackend; let $scope; beforeEach(ngModule('client')); beforeEach(inject(($componentController, _$httpBackend_, $rootScope) => { $scope = $rootScope.$new(); $httpBackend = _$httpBackend_; const $element = angular.element(''); controller = $componentController('vnClientCreditInsuranceInsuranceIndex', {$element, $scope}); controller.$params = {classificationId: 1}; })); describe('$onInit()', () => { it('should perform a query to GET credit the credit classification', () => { let res = [{finished: 'some value'}]; let query = 'CreditClassifications?filter=%7B%22fields%22%3A%5B%22finished%22%5D%2C%22where%22%3A%7B%22id%22%3A1%7D%7D'; $httpBackend.whenGET(query).respond(res); $httpBackend.expectGET(query); controller.$onInit(); $httpBackend.flush(); expect(controller.isClosed).toBe(true); }); }); }); });