nycJSorg/angular-presentation

View on GitHub
libs/utils/src/lib/sync/components/sync-code-game/sync-code-game-presenter/sync-code-game-presenter.component.spec.ts

Summary

Maintainability
B
6 hrs
Test Coverage
import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { SyncCodeGamePresenterComponent } from './sync-code-game-presenter.component';

describe('SyncCodeGamePresenterComponent', () => {
  let component: SyncCodeGamePresenterComponent;
  let fixture: ComponentFixture<SyncCodeGamePresenterComponent>;

  beforeEach(async(() => {
    TestBed.configureTestingModule({
      declarations: [SyncCodeGamePresenterComponent]
    }).compileComponents();
  }));

  beforeEach(() => {
    fixture = TestBed.createComponent(SyncCodeGamePresenterComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});