nycJSorg/angular-presentation

View on GitHub
libs/angular-ast-viz/src/lib/ast-tree/ast-tree.component.spec.ts

Summary

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

import { AstTreeComponent } from './ast-tree.component';

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

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

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

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