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