Files
rona-frontend/src/app/game/game.component.spec.ts

26 lines
614 B
TypeScript
Raw Normal View History

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
2020-07-23 14:53:03 +02:00
import { GameComponent } from './game.component';
2020-07-23 14:53:03 +02:00
describe('GameComponent', () => {
let component: GameComponent;
let fixture: ComponentFixture<GameComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
2020-07-23 14:53:03 +02:00
declarations: [ GameComponent ]
})
.compileComponents();
}));
beforeEach(() => {
2020-07-23 14:53:03 +02:00
fixture = TestBed.createComponent(GameComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});