Files
WinStudentGoalTracker/ui/winstudentgoaltracker/src/app/desktop/components/benchmark-card-full/benchmark-card-full.spec.ts
T
2026-03-07 16:10:55 -08:00

24 lines
607 B
TypeScript

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