Skip to content
Snippets Groups Projects
game-edit-dialog.component.spec.ts 684 B
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();
  });
});