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