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