nycJSorg/angular-presentation

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

Summary

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

import { BinaryParserDemoComponent } from './binary-parser-demo.component';

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

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

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

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