RackHD/on-web-ui

View on GitHub
src/app/management-center/pollers/pollers.component.spec.ts

Summary

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

import { PollersComponent } from './pollers.component';

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

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

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

});