Skip to content
Snippets Groups Projects
led-presentation.component.spec.ts 692 B
Newer Older
larsh's avatar
larsh committed
import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { LedPresentationComponent } from './led-presentation.component';

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

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

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

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