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