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