nycJSorg/angular-presentation

View on GitHub
apps/kirjs/src/app/modules/binary/binary-flat/binary-flat.component.spec.ts

Summary

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

import { BinaryFlatComponent } from './binary-flat.component';

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

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

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

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