import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { SplcComponent } from './splc.component'; describe('SplcComponent', () => { let component: SplcComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ SplcComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(SplcComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });