nycJSorg/angular-presentation

View on GitHub
apps/kirjs/src/app/modules/gomoku-print/o/o.component.spec.ts

Summary

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

import { OComponent } from './o.component';

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

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

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

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