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