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