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