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