report-card.component.spec.ts 655 B

12345678910111213141516171819202122
  1. import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
  2. import { ReportCardComponent } from './report-card.component';
  3. describe('ReportCardComponent', () => {
  4. let component: ReportCardComponent;
  5. let fixture: ComponentFixture<ReportCardComponent>;
  6. beforeEach(waitForAsync(() => {
  7. TestBed.configureTestingModule({
  8. imports: [ReportCardComponent],
  9. }).compileComponents();
  10. fixture = TestBed.createComponent(ReportCardComponent);
  11. component = fixture.componentInstance;
  12. fixture.detectChanges();
  13. }));
  14. it('should create', () => {
  15. expect(component).toBeTruthy();
  16. });
  17. });