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