nycJSorg/angular-presentation

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

Summary

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

import { BinaryInlineComponent } from './binary-inline.component';

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

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

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

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