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

25 lines
621 B
TypeScript

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