Newer
Older
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();
});
});