import './index'; describe('Client', () => { describe('Component vnClientCreditInsuranceInsuranceIndex', () => { let controller; let $httpBackend; beforeEach(ngModule('client')); beforeEach(angular.mock.inject(($componentController, _$httpBackend_) => { let $stateParams = {classificationId: 1}; $httpBackend = _$httpBackend_; controller = $componentController('vnClientCreditInsuranceInsuranceIndex', {$stateParams}); })); describe('$onInit()', () => { it('should perform a query to GET credit the credit classification', () => { let res = [{finished: 'some value'}]; let query = '/client/api/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); }); }); }); });