import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; import { TimeComponent } from './time.component'; describe('TimeComponent', () => { let component: TimeComponent; let fixture: ComponentFixture; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ imports: [TimeComponent], }).compileComponents(); fixture = TestBed.createComponent(TimeComponent); component = fixture.componentInstance; fixture.detectChanges(); })); it('should create', () => { expect(component).toBeTruthy(); }); });