RackHD/on-web-ui

View on GitHub
src/app/canvas-graph/canvas-graph.component.spec.ts

Summary

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

import { CanvasGraphComponent } from './canvas-graph.component';

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

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

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