This repository has been archived on 2023-06-20. You can view files and clone it, but cannot push or open issues or pull requests.
Angular_App/src/app/pages/BoardThreads/create-thread/create-thread.component.spec.ts
RakVhalate e2cca81f81
All checks were successful
continuous-integration/drone/push Build is passing
Sdelal formochku sozdaniya treda.
2022-12-08 01:24:35 +10:00

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();
});
});