mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 05:17:41 +00:00
24 lines
607 B
TypeScript
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();
|
|
});
|
|
});
|