import { ComponentFixture, TestBed } from "@angular/core/testing"; import { StatsComponent } from "./stats.component"; describe("StatsComponent", () => { let component: StatsComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ imports: [StatsComponent] }).compileComponents(); fixture = TestBed.createComponent(StatsComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it("should create", () => { expect(component).toBeTruthy(); }); });