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