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