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