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