import { ComponentFixture, TestBed } from '@angular/core/testing'; import { GuestCardComponent } from './guest-card.component'; describe('GuestCardComponent', () => { let component: GuestCardComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [ GuestCardComponent ] }) .compileComponents(); fixture = TestBed.createComponent(GuestCardComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });