generated from nhcarrigan/template
Closes #5 Reviewed-on: https://codeberg.org/nhcarrigan/portfolio/pulls/11 Co-authored-by: Naomi <commits@nhcarrigan.com> Co-committed-by: Naomi <commits@nhcarrigan.com>
23 lines
580 B
TypeScript
23 lines
580 B
TypeScript
import { ComponentFixture, TestBed } from "@angular/core/testing";
|
|
|
|
import { StatsComponent } from "./stats.component";
|
|
|
|
describe("StatsComponent", () => {
|
|
let component: StatsComponent;
|
|
let fixture: ComponentFixture<StatsComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [StatsComponent]
|
|
}).compileComponents();
|
|
|
|
fixture = TestBed.createComponent(StatsComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it("should create", () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|