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