Files
gameyfin/frontend/src/app/components/game-detail-view/game-detail-view.component.spec.ts
T
2022-07-21 21:17:04 +02:00

24 lines
657 B
TypeScript

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