import { ComponentFixture, TestBed } from '@angular/core/testing'; import { EditorComponent } from './editor.component'; describe('EditorComponent', () => { let component: EditorComponent; let fixture: ComponentFixture; beforeEach(() => { TestBed.configureTestingModule({ imports: [EditorComponent] }); fixture = TestBed.createComponent(EditorComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });