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