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