hades/client/app/game-detail/game-detail.component.spec.ts
2018-10-17 09:20:24 +02:00

25 lines
657 B
TypeScript

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