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