import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { IznosComponent } from './iznos.component'; describe('IznosComponent', () => { let component: IznosComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ IznosComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(IznosComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should be created', () => { expect(component).toBeTruthy(); }); });