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