nycJSorg/angular-presentation

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

Summary

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

import { ToReadComponent } from './to-read.component';

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

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

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

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